diff options
Diffstat (limited to '.github/workflows/linux-eoan-5.12.yml')
-rw-r--r-- | .github/workflows/linux-eoan-5.12.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/linux-eoan-5.12.yml b/.github/workflows/linux-eoan-5.12.yml new file mode 100644 index 000000000..4bd71d443 --- /dev/null +++ b/.github/workflows/linux-eoan-5.12.yml @@ -0,0 +1,24 @@ +name: Linux Qt 5.12 Ubuntu 19.10 +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + buildInContainer: + runs-on: ubuntu-latest + container: + image: ubuntu:19.10 + + steps: + - name: checkout sources + uses: actions/checkout@v1 + + - name: run build + run: | + cd .. + bash -x subsurface/.github/workflows/scripts/ubuntu-in-container-build.sh + |