diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-11-19 03:08:27 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-11-19 05:52:39 +0300 |
commit | 92327f87384c357264454a98c83aae733a6b6495 (patch) | |
tree | a1baa841ad1a8691088b96b0a57d4c223b994515 /.github | |
download | setup-mingw-92327f87384c357264454a98c83aae733a6b6495.tar.gz setup-mingw-92327f87384c357264454a98c83aae733a6b6495.zip |
initial commit
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/test.yml | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..b0957f9 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,48 @@ +name: Test + +on: + push: + pull_request: + schedule: + # Weekly, at 5:45 AM on Friday (somewhat randomly chosen). + - cron: '45 6 * * 5' + workflow_dispatch: + +jobs: + test: + strategy: + fail-fast: false + matrix: + os: [ubuntu-18.04, windows-2019, windows-2016] + platform: [x86, x64] + + include: + # Prettier run names. + - {os: ubuntu-18.04, name: Ubuntu} + - {os: windows-2019, name: Windows Server 2019} + - {os: windows-2016, name: Windows Server 2016} + + runs-on: '${{ matrix.os }}' + + name: '${{ matrix.name }} / ${{ matrix.platform }}' + + defaults: + run: + shell: pwsh + + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Set up MinGW + id: setup + uses: ./ + with: + platform: '${{ matrix.platform }}' + + - name: Build foo.exe + run: | + & '${{ steps.setup.outputs.gxx }}' -std=c++11 -o foo foo.cpp + if ('${{ runner.os }}' -eq 'Windows') { + .\foo.exe + } |