diff options
| author | Thomas Bauereiss | 2020-05-27 15:18:56 +0100 |
|---|---|---|
| committer | Thomas Bauereiss | 2020-05-27 15:19:07 +0100 |
| commit | 4525d78142cba80c4f4daaeca79426368f26e77e (patch) | |
| tree | 93969641012451761d77a809ce2ab8554a85bb31 /.github/workflows | |
| parent | 81545e145319f9f05357d5ac37c18a9ca90af431 (diff) | |
Try to fix Github CI
Add opam PPA when building on Ubuntu to get opam v2.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ubuntu_build.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/ubuntu_build.yml b/.github/workflows/ubuntu_build.yml index bf517113..ed3140ba 100644 --- a/.github/workflows/ubuntu_build.yml +++ b/.github/workflows/ubuntu_build.yml @@ -5,12 +5,14 @@ on: [push] jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v1 - name: Build on ubuntu run: | + sudo add-apt-repository ppa:avsm/ppa + sudo apt update sudo apt install build-essential libgmp-dev z3 sudo apt install opam etc/ci_opam_build.sh |
