Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
aadcg committed Nov 23, 2023
1 parent b3f2522 commit 1a1e591
Showing 1 changed file with 2 additions and 23 deletions.
25 changes: 2 additions & 23 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,30 +18,19 @@ jobs:
# Use ccl-bin/1.12.1 instead of 'ccl' because of
# https://github.com/roswell/roswell/issues/534.
# TODO: Revert when Roswell is functional again.
lisp: [sbcl-bin]
lisp: [sbcl-bin, ccl-bin, ecl]
# , ccl-bin/1.12.1, ecl/21.2.1
# rosargs: [dynamic-space-size=3072]
os: [ubuntu-latest]
os: [ubuntu-latest, macos-latest]
# , macos-latest
# try windows-latest when we understand commands to install Roswell on it

# run the job on every combination of "lisp" and "os" above
runs-on: ${{ matrix.os }}

steps:
# Check out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

# - name: Cache .roswell
# id: cache-dot-roswell
# uses: actions/cache@v1
# with:
# path: ~/.roswell
# key: ${{ runner.os }}-dot-roswell-${{ matrix.lisp }}-${{ hashFiles('**/*.asd') }}
# restore-keys: |
# ${{ runner.os }}-dot-roswell-${{ matrix.lisp }}-
# ${{ runner.os }}-dot-roswell-

- name: Install Roswell
# shell: bash
env:
Expand Down Expand Up @@ -71,13 +60,3 @@ jobs:
shell: bash
run: |
ros -e '(ql:quickload :lisp-unit2)' -e '(asdf:test-system :nsymbols)'
# - name: Compilation warnings
# shell: bash
# run: |
# ros ${{ matrix.rosargs }} -e '(push (uiop:getcwd) ql:*local-project-directories*)' -e '(load ".github/report-warnings.lisp")' -e '(compilation-conditions :nsymbols)'

# - name: Unbound exports
# shell: bash
# run: |
# ros ${{ matrix.rosargs }} -e '(push (uiop:getcwd) ql:*local-project-directories*)' -e '(ql:quickload :nsymbols)' -e '(load ".github/report-unbound-exports.lisp")' -e '(unbound-exports :nsymbols)'

0 comments on commit 1a1e591

Please sign in to comment.