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