diff options
| author | Felix Queißner <felix@ib-queissner.de> | 2020-06-17 12:01:24 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-17 12:01:24 +0200 |
| commit | 1e8c89570076e5ec05b6bf22ae108ccc206e8a25 (patch) | |
| tree | 4d6f49a3a15e4981048090adab789f89e8fb8249 /.github/workflows | |
| parent | ae5bf077498b46f74adb183c938fd85f24d9948d (diff) | |
| download | kristall-1e8c89570076e5ec05b6bf22ae108ccc206e8a25.tar.gz | |
Update build.yml
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yml | 27 |
1 files changed, 24 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 277f055..3d757b8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,4 +1,4 @@ -name: C/C++ CI +name: master Build Matrix on: push: @@ -7,8 +7,29 @@ on: branches: [ master ] jobs: - build: - runs-on: ubuntu-latest + build-ubuntu-20.04: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v2 + - uses: jurplel/install-qt-action@v2 + - name: make + run: make + build-ubuntu-18.04: + runs-on: ubuntu-18.04 + steps: + - uses: actions/checkout@v2 + - uses: jurplel/install-qt-action@v2 + - name: make + run: make + build-ubuntu-16.04: + runs-on: ubuntu-16.04 + steps: + - uses: actions/checkout@v2 + - uses: jurplel/install-qt-action@v2 + - name: make + run: make + build-windows: + runs-on: windows-latest steps: - uses: actions/checkout@v2 - uses: jurplel/install-qt-action@v2 |
