Skip to content

Commit

Permalink
Test on different oses.
Browse files Browse the repository at this point in the history
  • Loading branch information
svetlyak40wt committed Jan 28, 2024
1 parent fca7ec9 commit a0d0304
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 9 deletions.
21 changes: 17 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,24 @@
},
"jobs": {
"run-tests": {
"runs-on": "ubuntu-latest",
"strategy": {
"fail-fast": false,
"matrix": {
"os": [
"ubuntu-latest",
"windoes-latest"
],
"lisp": [
"sbcl-bin",
"ccl-bin"
]
}
},
"runs-on": "${{ matrix.os }}",
"env": {
"OS": "ubuntu-latest",
"OS": "${{ matrix.os }}",
"QUICKLISP_DIST": "quicklisp",
"LISP": "sbcl-bin"
"LISP": "${{ matrix.lisp }}"
},
"steps": [
{
Expand All @@ -38,7 +51,7 @@
"uses": "40ants/run-tests@v2",
"with": {
"asdf-system": "reblocks",
"coveralls-token": "${{ secrets.github_token }}"
"coveralls-token": "\n${{ matrix.lisp == 'sbcl-bin' &&\n matrix.os == 'ubuntu-latest' &&\n matrix.quicklisp == 'ultralisp' &&\n secrets.github_token }}"
}
}
]
Expand Down
13 changes: 8 additions & 5 deletions src/ci.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,14 @@
:on-pull-request t
;; :cache t
:jobs ((40ants-ci/jobs/run-tests:run-tests
;; :lisp ("sbcl-bin"
;; "ccl-bin"
;; "allegro"
;; "ecl"
;; "abcl")
:os ("ubuntu-latest"
"windoes-latest")
:lisp ("sbcl-bin"
"ccl-bin"
;; "allegro"
;; "ecl"
;; "abcl"
)
:coverage t)))

(defworkflow docs
Expand Down

0 comments on commit a0d0304

Please sign in to comment.