From 1a1e5913a9460014981c99b00aa0aff52ac643a5 Mon Sep 17 00:00:00 2001 From: "Andre A. Gomes" Date: Thu, 23 Nov 2023 17:07:53 +0200 Subject: [PATCH] . --- .github/workflows/tests.yml | 25 ++----------------------- 1 file changed, 2 insertions(+), 23 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6192b17..966852a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,10 +18,10 @@ 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 @@ -29,19 +29,8 @@ jobs: 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: @@ -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)'