Old workflows were removed.

This commit is contained in:
Alexander Artemenko 2021-02-07 16:46:20 +03:00
parent e409d21601
commit bc3ae73807
2 changed files with 0 additions and 130 deletions

View file

@ -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:
# # #<FOREIGN-VARIABLE "rl_readline_state" #x00007FA93E698850> 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::

View file

@ -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 }}