2019-11-13 00:48:05 -05:00
|
|
|
name: Windows
|
2020-02-25 22:52:07 -05:00
|
|
|
on: [push, pull_request]
|
2019-08-12 05:06:06 -04:00
|
|
|
jobs:
|
2019-11-12 23:44:00 -05:00
|
|
|
make:
|
2019-08-12 05:56:01 -04:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-05-11 18:18:44 -04:00
|
|
|
test_task: [check] # to make job names consistent
|
2019-11-27 05:09:47 -05:00
|
|
|
os: [windows-2019]
|
|
|
|
vs: [2019]
|
2019-08-16 20:43:05 -04:00
|
|
|
fail-fast: false
|
2019-08-12 05:56:01 -04:00
|
|
|
runs-on: ${{ matrix.os }}
|
2020-06-03 19:22:50 -04:00
|
|
|
env:
|
2020-06-03 21:26:40 -04:00
|
|
|
GITPULLOPTIONS: --no-tags origin ${{github.ref}}
|
2020-10-12 03:22:30 -04:00
|
|
|
VCVARS: C:\Program Files (x86)\Microsoft Visual Studio\${{ matrix.vs }}\Enterprise\VC\Auxiliary\Build\vcvars64.bat
|
2021-02-01 19:55:15 -05:00
|
|
|
PATCH: C:\msys64\usr\bin\patch.exe
|
2019-08-12 05:06:06 -04:00
|
|
|
steps:
|
2020-10-19 02:32:39 -04:00
|
|
|
- run: md build
|
|
|
|
working-directory:
|
2020-07-14 18:24:06 -04:00
|
|
|
- uses: actions/cache@v2
|
2019-11-11 21:27:55 -05:00
|
|
|
with:
|
|
|
|
path: C:\vcpkg\downloads
|
2019-11-12 03:22:19 -05:00
|
|
|
key: ${{ runner.os }}-vcpkg-download-${{ matrix.os }}-${{ github.sha }}
|
2019-11-11 21:27:55 -05:00
|
|
|
restore-keys: |
|
2019-11-12 03:22:19 -05:00
|
|
|
${{ runner.os }}-vcpkg-download-${{ matrix.os }}-
|
2019-11-11 21:27:55 -05:00
|
|
|
${{ runner.os }}-vcpkg-download-
|
2019-08-12 05:06:06 -04:00
|
|
|
- name: Install libraries with vcpkg
|
|
|
|
run: |
|
2020-08-06 23:28:39 -04:00
|
|
|
vcpkg --triplet x64-windows install readline zlib
|
2020-07-14 18:24:06 -04:00
|
|
|
- uses: actions/cache@v2
|
2019-11-11 21:27:55 -05:00
|
|
|
with:
|
|
|
|
path: C:\Users\runneradmin\AppData\Local\Temp\chocolatey
|
2019-11-12 03:22:19 -05:00
|
|
|
key: ${{ runner.os }}-chocolatey-${{ matrix.os }}-${{ github.sha }}
|
2019-11-11 21:27:55 -05:00
|
|
|
restore-keys: |
|
2019-11-12 03:22:19 -05:00
|
|
|
${{ runner.os }}-chocolatey-${{ matrix.os }}-
|
2019-11-11 21:27:55 -05:00
|
|
|
${{ runner.os }}-chocolatey-
|
2019-08-12 05:06:06 -04:00
|
|
|
- name: Install libraries with chocolatey
|
2019-09-03 08:03:10 -04:00
|
|
|
run: |
|
2021-05-11 00:32:55 -04:00
|
|
|
# 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
|
2021-05-11 00:17:33 -04:00
|
|
|
shell: pwsh
|
2020-06-03 19:33:04 -04:00
|
|
|
- name: git config
|
|
|
|
run: |
|
2021-02-01 19:55:15 -05:00
|
|
|
git config --global core.autocrlf false
|
|
|
|
git config --global core.eol lf
|
2021-02-02 00:37:15 -05:00
|
|
|
git config --global advice.detachedHead 0
|
2021-03-07 22:42:48 -05:00
|
|
|
git config --global init.defaultBranch garbage
|
2020-05-11 05:37:08 -04:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
path: src
|
2019-10-28 05:31:00 -04:00
|
|
|
- name: Configure
|
2019-08-12 05:06:06 -04:00
|
|
|
run: |
|
2020-10-12 03:22:30 -04:00
|
|
|
call "%VCVARS%"
|
2021-06-29 13:13:12 -04:00
|
|
|
../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"
|
2019-08-12 05:17:57 -04:00
|
|
|
- name: nmake
|
|
|
|
run: |
|
2020-10-12 03:22:30 -04:00
|
|
|
call "%VCVARS%"
|
2019-08-12 05:17:57 -04:00
|
|
|
set YACC=win_bison
|
2019-11-13 05:45:14 -05:00
|
|
|
echo on
|
2020-06-15 22:44:31 -04:00
|
|
|
nmake incs
|
|
|
|
nmake extract-extlibs
|
2019-08-12 05:17:57 -04:00
|
|
|
nmake
|
2019-08-12 06:08:51 -04:00
|
|
|
- name: nmake test
|
2021-05-11 18:18:44 -04:00
|
|
|
timeout-minutes: 5
|
2019-08-12 06:08:51 -04:00
|
|
|
run: |
|
2020-10-12 03:22:30 -04:00
|
|
|
call "%VCVARS%"
|
2021-05-11 18:18:44 -04:00
|
|
|
nmake test
|
|
|
|
- name: nmake test-all
|
|
|
|
timeout-minutes: 60
|
|
|
|
run: |
|
|
|
|
call "%VCVARS%"
|
2021-06-16 01:28:11 -04:00
|
|
|
::- %TEMP% is inconsistent with %TMP% and test-all expects they are consistent.
|
|
|
|
::- https://github.com/actions/virtual-environments/issues/712#issuecomment-613004302
|
2021-05-11 18:18:44 -04:00
|
|
|
set TMP=%USERPROFILE%\AppData\Local\Temp
|
|
|
|
set TEMP=%USERPROFILE%\AppData\Local\Temp
|
|
|
|
nmake test-all
|
|
|
|
- name: nmake test-spec
|
|
|
|
timeout-minutes: 10
|
|
|
|
run: |
|
|
|
|
call "%VCVARS%"
|
|
|
|
nmake test-spec
|
2020-03-07 03:34:41 -05:00
|
|
|
- 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 }}",
|
2020-03-10 01:31:50 -04:00
|
|
|
"commit": "${{ github.sha }}",
|
|
|
|
"branch": "${{ github.ref }}".split('/').reverse()[0]
|
2020-03-07 03:34:41 -05:00
|
|
|
}
|
|
|
|
env:
|
2020-03-10 01:31:50 -04:00
|
|
|
SLACK_WEBHOOK_URL: ${{ secrets.SIMPLER_ALERTS_URL }} # ruby-lang slack: ruby/simpler-alerts-bot
|
2020-03-07 03:34:41 -05:00
|
|
|
if: failure() && github.event_name == 'push'
|
2020-10-19 02:32:39 -04:00
|
|
|
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
working-directory: build
|
|
|
|
shell: cmd
|