aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel Dos Reis <GabrielDosReis@users.noreply.github.com>2022-09-13 10:25:52 -0700
committerGitHub <noreply@github.com>2022-09-13 10:25:52 -0700
commite18a2c1579348b7367762e4db733a36fa76719ba (patch)
tree1f391832506d719c345f68368030e065f1c5864b
parentb1a3efb99ffc7f5d08b873cf244713126c966c9a (diff)
downloadopen-axiom-e18a2c1579348b7367762e4db733a36fa76719ba.tar.gz
Revert "Enable basic CI build (#26)" (#27)
This reverts commit b1a3efb99ffc7f5d08b873cf244713126c966c9a.
-rw-r--r--.github/workflows/main.yml34
1 files changed, 0 insertions, 34 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
deleted file mode 100644
index 01926c44..00000000
--- a/.github/workflows/main.yml
+++ /dev/null
@@ -1,34 +0,0 @@
-name: Build & Test
-
-on:
- push:
- branches: [ master ]
- pull_request:
- branches: [ master ]
-
-jobs:
- build-and-test:
- name: ${{ matrix.os }} -x- $${ matrix.cxx }} -x- $${{ matrix.lisp }}
- runs-on: $${{ matrix.os }}
- strategy:
- fail-fast: false
- matrix:
- os: [ ubuntu-latest ]
- cxx: [ g++-11 ]
- lisp: [ sbcl ]
-
- steps:
- - uses: actions/checkout@v2
-
- - name: Install Lisp and C++ compilers
- if: matrix.os == 'ubuntu-latest'
- run: |
- sudo apt-get update && sudo apt upgrade
- sudo apt-get install build-essential $${ matrix.lisp }}
-
- - name: Configure & Build & Test
- run: |
- mkdir $${ matrix.lisp }}-build && chdir $${ matrix.lisp }}-build
- ../configure --with-lisp=$${ matrix.lisp }}
- time make
- time make check \ No newline at end of file