aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorFabian Meumertzheim <fabian@meumertzhe.im>2021-10-19 10:13:25 +0200
committerFabian Meumertzheim <fabian@meumertzhe.im>2021-10-19 10:54:44 +0200
commit902bd223b2520aec4dea31e35edbda495d29e90d (patch)
treebfaacfa447a0812ab5a1e03e83cea0f5142b050a /.github
parent7aa82bc17c0ed6844be4c196c4c5d21358d23f80 (diff)
downloadjazzer-api-902bd223b2520aec4dea31e35edbda495d29e90d.tar.gz
Also build the replayer for Windows
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build-replayer.yml12
1 files changed, 11 insertions, 1 deletions
diff --git a/.github/workflows/build-replayer.yml b/.github/workflows/build-replayer.yml
index aa617416..16ddeed2 100644
--- a/.github/workflows/build-replayer.yml
+++ b/.github/workflows/build-replayer.yml
@@ -9,7 +9,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
- os: [ubuntu-latest, macos-10.15]
+ os: [ubuntu-latest, macos-10.15, windows-2016]
include:
- os: ubuntu-latest
arch: "linux"
@@ -17,6 +17,9 @@ jobs:
- os: macos-10.15
arch: "darwin"
cache: "/private/var/tmp/bazel-disk"
+ - os: windows-2016
+ arch: "windows"
+ cache: "%HOME%/bazel-disk"
steps:
- uses: actions/checkout@v2
@@ -61,11 +64,18 @@ jobs:
name: replayer_linux.jar
path: replayer_linux
+ - name: Download Windows jar
+ uses: actions/download-artifact@v2
+ with:
+ name: replayer_windows.jar
+ path: replayer_windows
+
- name: Merge jars
run: |
mkdir merged
unzip -o replayer_darwin/replayer.jar -d merged
unzip -o replayer_linux/replayer.jar -d merged
+ unzip -o replayer_windows/replayer.jar -d merged
jar cvmf merged/META-INF/MANIFEST.MF replayer.jar -C merged .
- name: Upload merged jar