Hi all,

I would like to add the following file in our repo to start CI from now on.

Comments and ideas are welcome, I'll consider to add them on
top of this in the future.

- Qian

==== .github/workflows/ci.yml ====
name: FriCAS CI

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  build:

    runs-on: ubuntu-20.04

    steps:
    - uses: actions/checkout@v2
    - name: install dependencies
      run: sudo apt-get install sbcl libxpm-dev
    - name: configure
      run: ./configure --with-lisp=sbcl --with-gmp --with-x
    - name: make
      run: make -j2 --output-sync
    - name: make check
      run: make check -j2 --output-sync

-- 
You received this message because you are subscribed to the Google Groups 
"FriCAS - computer algebra system" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/fricas-devel/83532d8d-1f99-a7fc-58be-e713e6519008%40gmail.com.

Reply via email to