sync #659
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build linux | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
linux-build: | |
strategy: | |
matrix: | |
os: [ ubuntu-22.04, ubuntu-20.04 ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Update submodules | |
run: 'git submodule update --init --recursive' | |
- name: Install gcc-multilib (32-bit support) | |
run: 'sudo apt update; sudo apt install gcc-multilib -y' | |
- name: Build | |
run: 'make; make describe' | |
- name: Regression tests | |
run: 'make describe check' |