Skip to content

Commit

Permalink
[ci] test more Lisps
Browse files Browse the repository at this point in the history
  • Loading branch information
oldk1331 committed Oct 15, 2024
1 parent 279173c commit 483b5f3
Show file tree
Hide file tree
Showing 4 changed files with 61 additions and 4 deletions.
57 changes: 57 additions & 0 deletions .github/workflows/linux-ccl.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: FriCAS CI on Linux on CCL

on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-20.04
timeout-minutes: 30

steps:
- uses: actions/checkout@v4
- name: install dependencies
run: |
sudo apt-get update
sudo apt-get install libgmp-dev libxpm-dev
wget https://github.com/Clozure/ccl/releases/download/v1.13/ccl-1.13-linuxx86.tar.gz
tar xvf ccl-1.13-linuxx86.tar.gz
- name: configure
run: ./configure --with-lisp=`pwd ./ccl/lx86cl64` --with-gmp --with-x || cat config.log

- name: make
run: make -j4 --output-sync

- name: make check
run: make check -j4 --output-sync

- name: Create artifact archives
run: |
test "$GITHUB_REF_TYPE" != "tag" && rm -r target/*/src
tar -cjf FriCAS-linux-x86_64-${{ github.sha }}.tar.bz2 target/
- name: Upload Linux binary
uses: actions/upload-artifact@v4
with:
name: FriCAS-linux-x86_64-binary
path: FriCAS-linux-x86_64-${{ github.sha }}.tar.bz2

- name: Upload to nightly release
if: ${{ github.event_name == 'push' && ( github.event.ref == 'refs/heads/master' || github.ref_type == 'tag' ) && github.repository == 'fricas/fricas' }}
## RELEASE_ID is:
## `curl https://api.github.com/${REPO_URL}/tags/nightly | jq .id`
run: |
export REPO_URL=repos/fricas/fricas-nightly-builds/releases
export RELEASE_ID=74905307
export TIMESTAMP=$(date +%Y-%m-%dT%H.%M)
export SHA=$(echo ${{ github.sha }} | cut -c 1-8)
export FILENAME1=FriCAS-${TIMESTAMP}-linux-x86_64-${SHA}.tar.bz2
export FILENAME2=fricas-${GITHUB_REF_NAME}-linux-x86_64.tar.bz2
export FILENAME=$(test "$GITHUB_REF_TYPE" != "tag" && echo $FILENAME1 || echo $FILENAME2)
export URL=https://uploads.github.com/${REPO_URL}/${RELEASE_ID}/assets
curl -v -X POST -H "Accept: application/vnd.github+json" \
-H "Authorization: token ${{ secrets.releasetoken }}" \
"${URL}?name=${FILENAME}" \
--data-binary "@FriCAS-linux-x86_64-${{ github.sha }}.tar.bz2" \
-H "Content-Type: application/x-bzip2" || true
2 changes: 1 addition & 1 deletion .github/workflows/linux-clisp.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: FriCAS CI on Linux
name: FriCAS CI on Linux on CLISP

on: [push, pull_request]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-ecl.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: FriCAS CI on Linux
name: FriCAS CI on Linux on ECL

on: [push, pull_request]

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linux-gcl.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: FriCAS CI on Linux
name: FriCAS CI on Linux on GCL

on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
timeout-minutes: 60

steps:
Expand Down

0 comments on commit 483b5f3

Please sign in to comment.