Skip to content

Commit

Permalink
Merge pull request #2 from 40ants/fix-used-shell
Browse files Browse the repository at this point in the history
Fix used shell to make it work on Windows
  • Loading branch information
svetlyak40wt authored Jan 30, 2024
2 parents 1b5fd59 + de498d2 commit 9c0387d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
LISP: sbcl-bin

steps:
- uses: actions/checkout@v1
- uses: 40ants/setup-lisp@v1
- uses: actions/checkout@v4
- uses: 40ants/setup-lisp@v3
- uses: 40ants/build-docs@v1
with:
asdf-system: docs
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ runs:
using: composite
steps:
- name: Install cl-coveralls
shell: bash
shell: lispsh -eo pipefail {0}
run: |
echo '::group::Installing cl-coveralls'
# Until this pull merged:
Expand All @@ -25,7 +25,7 @@ runs:
echo '::endgroup::'
- name: Run Tests
shell: bash
shell: lispsh -eo pipefail {0}
run: |
qlot exec ${{ github.action_path }}/run-tests.ros ${{ inputs.asdf-system }} <<EOF
${{ inputs.run-tests }}
Expand Down
3 changes: 3 additions & 0 deletions changelog.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
(defchangelog (:ignore-words ("CLISP"
"CFFI"
"FFI"))
(2.2.0 2024-01-30 "
* Shell, used to run all commands was changed from bash to `lispsh -eo pipefail {0}`. This fixes runner for Windows.
* Documentation builder workflow switched from `actions/checkout@v3` to `v4` version.")
(2.1.2 2021-02-25
"Run tests under the qlot.
This fixes test running when Roswell and Qlot are restored from cache.")
Expand Down
6 changes: 3 additions & 3 deletions qlfile.lock
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
("quicklisp" .
(:class qlot/source/dist:source-dist
:initargs (:distribution "http://beta.quicklisp.org/dist/quicklisp.txt" :%version :latest)
:version "2021-08-07"))
:version "2023-10-21"))
("ultralisp" .
(:class qlot/source/dist:source-dist
:initargs (:distribution "http://dist.ultralisp.org" :%version :latest)
:version "20210909104500"))
:version "20240127152000"))
("sly" .
(:class qlot/source/github:source-github
:initargs (:repos "svetlyak40wt/sly" :ref nil :branch "patches" :tag nil)
:version "github-489a6b628f809dd2b1c392346a70a0d2"))
:version "github-030a8441f57f7e0bb401570935e741dfd9edfb83"))

0 comments on commit 9c0387d

Please sign in to comment.