ruby-changes:56961
From: Hiroshi <ko1@a...>
Date: Mon, 12 Aug 2019 20:12:24 +0900 (JST)
Subject: [ruby-changes:56961] Hiroshi SHIBATA: bbc5e97b95 (master): Migrate Windows 2016 env to GitHub Actions from AzurePipelines
https://git.ruby-lang.org/ruby.git/commit/?id=bbc5e97b95 From bbc5e97b959ba526036f0f6c95682c1721a87130 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA <hsbt@r...> Date: Mon, 12 Aug 2019 18:06:06 +0900 Subject: Migrate Windows 2016 env to GitHub Actions from AzurePipelines diff --git a/.github/workflows/windows-2016.yml b/.github/workflows/windows-2016.yml new file mode 100644 index 0000000..63a468e --- /dev/null +++ b/.github/workflows/windows-2016.yml @@ -0,0 +1,29 @@ https://github.com/ruby/ruby/blob/trunk/.github/workflows/windows-2016.yml#L1 +name: windows-2016 +on: + push: + branches: + - master + pull_request: + branches: + - '*' +jobs: + latest: + runs-on: windows-2016 + steps: + - name: Install libraries with vcpkg + run: | + vcpkg --triplet x64-windows install %dependencies% || ( + sleep 4 && vcpkg --triplet x64-windows install %dependencies% + ) || ( + sleep 25 && vcpkg --triplet x64-windows install %dependencies% + ) + env: + dependencies: openssl readline zlib + - name: Install libraries with chocolatey + run: choco install winflexbison3 + - name: Checkout # not using actions/checkout because it's unstable. + run: git clone --depth=50 https://github.com/ruby/ruby . + - name: configure + run: | + call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvars64.bat" + win32/configure.bat --without-ext=+,dbm,gdbm --enable-bundled-libffi --with-opt-dir=C:/vcpkg/installed/x64-windows -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/