From 92327f87384c357264454a98c83aae733a6b6495 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Thu, 19 Nov 2020 03:08:27 +0300 Subject: initial commit --- .github/workflows/test.yml | 48 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 .github/workflows/test.yml (limited to '.github/workflows') 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 + } -- cgit v1.2.3