From be9640c48094f0a62d0ec09296d8ef33f0a92883 Mon Sep 17 00:00:00 2001 From: Gabriel Dos Reis Date: Sat, 17 Sep 2022 18:13:52 -0700 Subject: Gdr/enable basic ci (#28) * Enable basic CI build * Fix indentation thinko * Update main.yml * Update main.yml * Update main.yml * Really install the advertised compilers * install libxpm-dev * Do not rerun configure * Disable maintainer mode * Update main.yml --- .github/workflows/main.yml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..c55f4cc0 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,37 @@ +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 -y + sudo apt-get install build-essential ${{ matrix.cxx }} ${{ matrix.lisp }} libxpm-dev + sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-11 100 --slave /usr/bin/g++ g++ /usr/bin/g++-11 --slave /usr/bin/gcov gcov /usr/bin/gcov-11 + + - name: Configure & Build & Test + run: | + mkdir ${{ matrix.lisp }}-build && cd ${{ matrix.lisp }}-build + touch ../configure && sleep 1 + ../configure --disable-maintainer-mode --with-lisp=${{ matrix.lisp }} + time make + time make check + -- cgit v1.2.3