blob: b0957f9bd272b68ee217e66956e2fbcc1bb03abe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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
}
|