diff options
| -rw-r--r-- | .github/workflows/ubuntu_18_04_build.yml (renamed from .github/workflows/ubuntu_build.yml) | 2 | ||||
| -rw-r--r-- | .github/workflows/ubuntu_20_04_build.yml | 16 | ||||
| -rw-r--r-- | README.md | 2 |
3 files changed, 18 insertions, 2 deletions
diff --git a/.github/workflows/ubuntu_build.yml b/.github/workflows/ubuntu_18_04_build.yml index ed3140ba..02755e87 100644 --- a/.github/workflows/ubuntu_build.yml +++ b/.github/workflows/ubuntu_18_04_build.yml @@ -1,4 +1,4 @@ -name: CI ubuntu-latest +name: CI ubuntu-18.04 on: [push] diff --git a/.github/workflows/ubuntu_20_04_build.yml b/.github/workflows/ubuntu_20_04_build.yml new file mode 100644 index 00000000..097b56bf --- /dev/null +++ b/.github/workflows/ubuntu_20_04_build.yml @@ -0,0 +1,16 @@ +name: CI ubuntu-20.04 + +on: [push] + +jobs: + build: + + runs-on: ubuntu-20.04 + + steps: + - uses: actions/checkout@v1 + - name: Build on ubuntu + run: | + sudo apt install build-essential libgmp-dev z3 + sudo apt install opam + etc/ci_opam_build.sh @@ -1,7 +1,7 @@ The Sail ISA specification language =================================== - +  Overview |
