-
Notifications
You must be signed in to change notification settings - Fork 5
112 lines (92 loc) · 2.98 KB
/
test-java-bindings-new.yml
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: Cross-platform Build and Test
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Build for ${{ matrix.target }}
runs-on: ubuntu-latest
strategy:
matrix:
target:
- x86_64-unknown-linux-gnu
- aarch64-unknown-linux-gnu
- aarch64-apple-darwin
- x86_64-apple-darwin
- x86_64-pc-windows-gnu
# - aarch64-pc-windows-msvc
steps:
- uses: actions/checkout@v3
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: ${{ matrix.target }}
override: true
- name: Install cargo-binstall
uses: taiki-e/install-action@cargo-binstall
- name: Install Zig
uses: goto-bus-stop/setup-zig@v2
with:
version: 0.10.1
- name: Install cargo-zigbuild
run: cargo binstall --no-confirm cargo-zigbuild
- name: Install cargo-xwin
run: cargo binstall --no-confirm cargo-xwin
- name: Set up MinGW (for x86_64 Windows)
if: ${{ matrix.target == 'x86_64-pc-windows-gnu' }}
run: sudo apt-get install gcc-mingw-w64-x86-64 -y
- name: Build with cargo-zigbuild
run: cargo zigbuild --target ${{ matrix.target }} --release
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.target }}
path: target/${{ matrix.target }}/release/*
test:
name: Test on ${{ matrix.os }}
needs: build
strategy:
matrix:
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
- os: linux-arm64
target: aarch64-unknown-linux-gnu
- os: macos-latest
target: x86_64-apple-darwin
- os: macos-latest
target: aarch64-apple-darwin
- os: windows-latest
target: x86_64-pc-windows-gnu
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: ${{ matrix.target }}
override: true
- name: Download artifacts
uses: actions/download-artifact@v3
with:
name: ${{ matrix.target }}
path: target/${{ matrix.target }}/release
- name: Make binaries executable
if: runner.os != 'Windows'
run: chmod +x target/${{ matrix.target }}/release/*
# Windows has a weird heap allocation error when running tests
# This happens because each test in fk20, will create commit and opening
# keys. Its not clear as to why the tests are not freeing the heap allocations
# on windows, but running the tests on a single thread, fixes it.
- name: Run tests (Windows)
if: runner.os == 'Windows'
run: cargo test --target ${{ matrix.target }} -- --test-threads=1 --nocapture
- name: Run tests
if: runner.os != 'Windows'
run: cargo test --target ${{ matrix.target }}