diff options
| author | Felix (xq) Queißner <git@mq32.de> | 2020-06-18 13:41:13 +0200 |
|---|---|---|
| committer | Felix (xq) Queißner <git@mq32.de> | 2020-06-18 13:41:13 +0200 |
| commit | a3a668e1e2298a95dce051d2c5feef86a575b511 (patch) | |
| tree | 3e9b4d896a71d0eb707cab1c541f583e9167b02f | |
| parent | 4daab4cd8399dc88b1885b83934b6f4ef5b0aa54 (diff) | |
| parent | 5134da7c50fc9f4298766250f9311404842e99df (diff) | |
| download | kristall-a3a668e1e2298a95dce051d2c5feef86a575b511.tar.gz | |
Merge branch 'master' of github.com:MasterQ32/kristall
| -rw-r--r-- | .github/workflows/build.yml | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..497ae7e --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,39 @@ +name: master Build Matrix + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build_ubuntu_20: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v2 + - uses: jurplel/install-qt-action@v2 + - name: make + run: make + build_ubuntu_18: + runs-on: ubuntu-18.04 + steps: + - uses: actions/checkout@v2 + - uses: jurplel/install-qt-action@v2 + - name: make + run: make + build_ubuntu_16: + 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 + - name: vcvars + run: call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat" + - name: make + run: make |
