From bc3ae73807c090cb0ff47b89e23278d7e95e6f8f Mon Sep 17 00:00:00 2001 From: Alexander Artemenko Date: Sun, 7 Feb 2021 16:46:20 +0300 Subject: [PATCH] Old workflows were removed. --- .github/workflows/ci.yml | 94 -------------------------------------- .github/workflows/docs.yml | 36 --------------- 2 files changed, 130 deletions(-) delete mode 100644 .github/workflows/ci.yml delete mode 100644 .github/workflows/docs.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 74cb4c2..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,94 +0,0 @@ -name: 'CI' - -on: - # This will run tests on pushes - # to master branch or on pull merges: - push: - branches: - - 'main' - - 'master' - # # This will run tests for every pull request: - # pull_request: - # # Rerun tests at 10 AM every Monday - # # to check if they still work with latest dependencies. - # schedule: - # - cron: '0 10 * * 1' - -jobs: - run-tests: - runs-on: ${{ matrix.os }} - continue-on-error: ${{ matrix.can-fail || false }} - - strategy: - fail-fast: false - matrix: - os: - - ubuntu-latest -# - macos-latest - quicklisp-dist: - - quicklisp - - ultralisp - lisp: - - sbcl-bin - # - ccl-bin - # - ecl - # - abcl - # - allegro - # - clisp - # - cmucl - # include: - # # Seems allegro is does not support 64bit OSX. - # # Unable to install it using Roswell: - # # alisp is not executable. Missing 32bit glibc? - # - lisp: allegro - # os: macos-latest - # can-fail: true - # # CLisp on Ubuntu can't be installed because of the error: - # # # does not have - # # the required size or alignment - # - lisp: clisp - # os: ubuntu-latest - # can-fail: true - # # CMUCL is 32bit and cant' work on 64bit OSX: - # # .roswell/impls/x86-64/darwin/cmu-bin/21d/bin/lisp is not executable. Missing 32bit glibc? - # - lisp: cmucl - # os: macos-latest - # can-fail: true - - env: - LISP: ${{ matrix.lisp }} - OS: ${{ matrix.os }} - QUICKLISP_DIST: ${{ matrix.quicklisp-dist }} - - steps: - - uses: actions/checkout@v1 - - uses: 40ants/cl-info/.github/actions/setup-lisp@custom-action - with: - asdf-system: cl-info - qlfile-template: | - {% ifequal quicklisp_dist "ultralisp" %} - dist ultralisp http://dist.ultralisp.org - {% endifequal %} - - github mgl-pax svetlyak40wt/mgl-pax :branch mgl-pax-minimal - - - uses: 40ants/cl-info/.github/actions/run-tests@custom-action - with: - asdf-system: cl-info - - # This is additional step to check - # a command line script - - name: Run Command Line Version - run: | - - echo ::group::Help Argument - qlot exec cl-info --help - echo ::endgroup:: - - echo ::group::Version Argument - qlot exec cl-info --version - echo ::endgroup:: - - echo ::group::Lisp Systems Info - qlot exec cl-info cl-info defmain - echo ::endgroup:: diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml deleted file mode 100644 index 8d2c812..0000000 --- a/.github/workflows/docs.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: 'Docs' - -on: - # This will run tests on pushes - # to master branch or on pull merges: - push: - branches: - - 'main' - - 'master' - # This will run tests for every pull request: - pull_request: - # Rerun tests at 10 AM every Monday - # to check if they still work with latest dependencies. - schedule: - - cron: '0 10 * * 1' - -jobs: - build-docs: - runs-on: ubuntu-latest - - env: - LISP: sbcl-bin - - steps: - - uses: actions/checkout@v1 - - uses: 40ants/cl-info/.github/actions/setup-lisp@custom-action - with: - asdf-system: cl-info - qlfile-template: | - github mgl-pax svetlyak40wt/mgl-pax :branch mgl-pax-minimal - - - uses: 40ants/cl-info/.github/actions/build-docs@custom-action - with: - asdf-system: cl-info - # ngrok-auth-token: ${{ secrets.NGROK_AUTH_TOKEN }} -