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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
name: Test
on:
push:
pull_request:
schedule:
# Weekly, at 5:45 AM on Friday (somewhat randomly chosen).
- cron: '45 5 * * 5'
workflow_dispatch:
jobs:
test:
strategy:
fail-fast: false
matrix:
platform: [x86, x64]
cygwin: [0, 1]
hardlinks: [0, 1]
os: [ubuntu-18.04, ubuntu-20.04, ubuntu-latest, windows-2019]
include:
# Prettier run names.
- {os: ubuntu-18.04, name: Ubuntu 18.04}
- {os: ubuntu-20.04, name: Ubuntu 20.04}
- {os: ubuntu-latest, name: Ubuntu (latest)}
- {cygwin: 1, name: Cygwin}
exclude:
# No Cygwin on Ubuntu.
- {os: ubuntu-18.04, cygwin: 1}
- {os: ubuntu-20.04, cygwin: 1}
- {os: ubuntu-latest, cygwin: 1}
# This action is not suitable for Windows hosts, use setup-mingw for
# that.
- {os: windows-2019, cygwin: 0}
# Only test hardlinks on Cygwin.
- {cygwin: 0, hardlinks: 1}
runs-on: '${{ matrix.os }}'
name: '${{ matrix.name }} / ${{ matrix.platform }} / Hardlinks: ${{ matrix.hardlinks }}'
defaults:
run:
shell: pwsh
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Clean up PATH
uses: egor-tensin/cleanup-path@v1
if: runner.os == 'Windows'
- name: Install Cygwin
uses: egor-tensin/setup-cygwin@v3
with:
platform: '${{ matrix.platform }}'
if: matrix.cygwin
- name: Set up GCC
uses: ./
with:
platform: '${{ matrix.platform }}'
cygwin: '${{ matrix.cygwin }}'
cc: 1
hardlinks: '${{ matrix.hardlinks }}'
- name: Build foo.exe
run: |
$flags = @()
if ('${{ matrix.platform }}' -eq 'x86') {
$flags += '-m32'
}
$flags += '-std=c++14','-o','foo','foo.cpp'
if ('${{ runner.os }}' -eq 'Linux') {
$flags += '-lpthread'
}
g++ $flags
if: '!matrix.cygwin || matrix.hardlinks'
- name: Build foo.exe on Cygwin
run: |
$cwd = cygpath.exe -ua (Get-Location)
$arch = if ('${{ matrix.platform }}' -eq 'x64') { '-m64' } else { '-m32' }
$cmd = printf.exe -- 'cd %q && g++ %q -std=c++14 -o foo foo.cpp' $cwd $arch
bash.exe --login -o errexit -c $cmd
if: matrix.cygwin && !matrix.hardlinks
- name: Run foo.exe
run: |
$expected = @"
Doing something #1
Doing something #2
Doing something #3
"@
$actual = & (Join-Path . foo)
$actual = $actual -join [Environment]::NewLine
$($actual -eq $expected) -or $(throw @"
Unexpected output:
$actual
"@)
# Is this really the most stable piece of `gcc --version` output?
- name: Check cc/c++
run: |
echo (Get-Command cc).Path
$cc = & cc --version
echo $cc
$($cc | Select-String -Pattern "This is free software; see the source for copying conditions." -SimpleMatch -Quiet) -or $(throw "Unexpected `cc --version` output")
echo (Get-Command c++).Path
$cxx = & c++ --version
echo $cxx
$($cxx | Select-String -Pattern "This is free software; see the source for copying conditions." -SimpleMatch -Quiet) -or $(throw "Unexpected `c++ --version` output")
if: '!matrix.cygwin || matrix.hardlinks'
- name: Check cc/c++ on Cygwin
run: |
$cc = bash.exe --login -o errexit -c 'cc --version'
echo $cc
$($cc | Select-String -Pattern "This is free software; see the source for copying conditions." -SimpleMatch -Quiet) -or $(throw "Unexpected `cc --version` output")
$cxx = bash.exe --login -o errexit -c 'c++ --version'
echo $cxx
$($cxx | Select-String -Pattern "This is free software; see the source for copying conditions." -SimpleMatch -Quiet) -or $(throw "Unexpected `c++ --version` output")
if: matrix.cygwin && !matrix.hardlinks
|