blob: 7ab48d6d935bbbf41cf9441923865de6f1030edc (
plain)
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
|
name: Windows
on: [push, pull_request]
jobs:
make:
strategy:
matrix:
test_task: [check] # to make job names consistent
os: [windows-2019, windows-2022]
fail-fast: false
runs-on: ${{ matrix.os }}
env:
GITPULLOPTIONS: --no-tags origin ${{github.ref}}
PATCH: D:\a\_temp\msys\msys64\usr\bin\patch.exe
steps:
- run: md build
working-directory:
- uses: msys2/setup-msys2@v2
with:
update: true
install: >-
patch
- uses: actions/cache@v2
with:
path: C:\vcpkg\downloads
key: ${{ runner.os }}-vcpkg-download-${{ matrix.os }}-${{ github.sha }}
restore-keys: |
${{ runner.os }}-vcpkg-download-${{ matrix.os }}-
${{ runner.os }}-vcpkg-download-
- name: Set VCVARS
run: |
IF ${{ matrix.os }}==windows-2022 (
echo VCVARS="C:\Program Files\Microsoft Visual Studio\2022\Preview\VC\Auxiliary\Build\vcvars64.bat" >> %GITHUB_ENV%
) ELSE IF ${{ matrix.os }}==windows-2019 (
echo VCVARS="C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat" >> %GITHUB_ENV%
)
- name: Install libraries with vcpkg
run: |
vcpkg --triplet x64-windows install readline zlib
- uses: actions/cache@v2
with:
path: C:\Users\runneradmin\AppData\Local\Temp\chocolatey
key: ${{ runner.os }}-chocolatey-${{ matrix.os }}-${{ github.sha }}
restore-keys: |
${{ runner.os }}-chocolatey-${{ matrix.os }}-
${{ runner.os }}-chocolatey-
- name: Install libraries with chocolatey
run: |
# Using Choco-Install for retries, but it doesn't detect failures properly
# if you pass multiple package names in a single command.
Choco-Install -PackageName openssl
Choco-Install -PackageName winflexbison3
shell: pwsh
- name: git config
run: |
git config --global core.autocrlf false
git config --global core.eol lf
git config --global advice.detachedHead 0
git config --global init.defaultBranch garbage
- uses: actions/checkout@v2
with:
path: src
- name: Configure
run: |
call %VCVARS%
..\src\win32\configure.bat --disable-install-doc --enable-bundled-libffi --with-opt-dir=C:/vcpkg/installed/x64-windows --with-openssl-dir="C:/Program Files/OpenSSL-Win64"
- name: nmake
run: |
call %VCVARS%
set YACC=win_bison
echo on
nmake incs
nmake extract-extlibs
nmake
- name: nmake test
timeout-minutes: 5
run: |
call %VCVARS%
nmake test
- name: nmake test-all
timeout-minutes: 60
run: |
call %VCVARS%
::- %TEMP% is inconsistent with %TMP% and test-all expects they are consistent.
::- https://github.com/actions/virtual-environments/issues/712#issuecomment-613004302
set TMP=%USERPROFILE%\AppData\Local\Temp
set TEMP=%USERPROFILE%\AppData\Local\Temp
nmake test-all
continue-on-error: ${{ matrix.os == 'windows-2022' }}
- name: nmake test-spec
timeout-minutes: 10
run: |
call %VCVARS%
nmake test-spec
continue-on-error: ${{ matrix.os == 'windows-2022' }}
- uses: k0kubun/action-slack@v2.0.0
with:
payload: |
{
"ci": "GitHub Actions",
"env": "${{ matrix.os }} / ${{ matrix.test_task }}",
"url": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}",
"commit": "${{ github.sha }}",
"branch": "${{ github.ref }}".split('/').reverse()[0]
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SIMPLER_ALERTS_URL }} # ruby-lang slack: ruby/simpler-alerts-bot
if: ${{ failure() && github.event_name == 'push' }}
defaults:
run:
working-directory: build
shell: cmd
|