mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-29 13:40:20 +00:00
25 lines
416 B
YAML
25 lines
416 B
YAML
|
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
|
||
|
|