Skip to content

Commit

Permalink
Trying to run tests for some other lisp implementations.
Browse files Browse the repository at this point in the history
  • Loading branch information
svetlyak40wt committed Sep 24, 2023
1 parent 0430d65 commit 4851f07
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/server-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,20 @@
"os": [
"ubuntu-latest",
"macos-latest"
],
"lisp": [
"sbcl-bin",
"ccl-bin/1.12.1",
"clisp",
"ecl"
]
}
},
"runs-on": "${{ matrix.os }}",
"env": {
"OS": "${{ matrix.os }}",
"QUICKLISP_DIST": "ultralisp",
"LISP": "sbcl-bin"
"LISP": "${{ matrix.lisp }}"
},
"steps": [
{
Expand All @@ -120,7 +126,7 @@
"uses": "actions/cache@v3",
"with": {
"path": "qlfile\nqlfile.lock\n~/.cache/common-lisp/\n~/.roswell\n/usr/local/etc/roswell\n/usr/local/bin/ros\n/usr/local/Cellar/roswell\n.qlot",
"key": "a-${{ steps.current-month.outputs.value }}-${{ env.cache-name }}-${{ matrix.os }}-ultralisp-sbcl-bin-${{ hashFiles('qlfile.lock', '*.asd') }}"
"key": "a-${{ steps.current-month.outputs.value }}-${{ env.cache-name }}-${{ matrix.os }}-ultralisp-${{ matrix.lisp }}-${{ hashFiles('qlfile.lock', '*.asd') }}"
}
},
{
Expand Down
5 changes: 3 additions & 2 deletions server/ci.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@
"ultralisp")
:lisp ("sbcl-bin"
;; On CCL there are some strange network errors both on ubuntu and OSX
;; "ccl-bin/1.12.1"
)
"ccl-bin/1.12.1"
"clisp"
"ecl")
;; :exclude ((:os "ubuntu-latest"
;; ;; On Ubuntu tests fail with this error:
;; ;; The condition Address family for hostname not supported (error #-9) during nameserver operation in getaddrinfo occurred with errno: 0.
Expand Down

0 comments on commit 4851f07

Please sign in to comment.