File tree 2 files changed +13
-2
lines changed
2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 52
52
if : ${{ ! matrix.cross }}
53
53
- run : cargo install cross
54
54
if : ${{ matrix.cross }}
55
- - run : cross build --release --target ${{ matrix.rust-target }} --features native-tls-vendored
55
+ - run : cross build --release --target ${{ matrix.rust-target }}
56
56
if : ${{ matrix.cross }}
57
57
- run : mv ./target/${{ matrix.rust-target }}/release/warg.exe ./target/${{ matrix.rust-target }}/release/warg-cli-${{ matrix.rust-target }}
58
58
if : matrix.os == 'windows-latest'
91
91
if : ${{ ! matrix.cross }}
92
92
- run : cargo install cross
93
93
if : ${{ matrix.cross }}
94
- - run : cross build --release --target ${{ matrix.rust-target }} --features native-tls-vendored
94
+ - run : cross build --release --target ${{ matrix.rust-target }}
95
95
if : ${{ matrix.cross }}
96
96
- run : mv ./target/${{ matrix.rust-target }}/release/warg.exe ./target/${{ matrix.rust-target }}/release/warg-cli-${{ matrix.rust-target }}
97
97
if : matrix.os == 'windows-latest'
Original file line number Diff line number Diff line change
1
+ [target .aarch64-unknown-linux-gnu ]
2
+ pre-build = [
3
+ " dpkg --add-architecture $CROSS_DEB_ARCH" ,
4
+ " apt-get update && apt-get --assume-yes install libssl-dev:$CROSS_DEB_ARCH" ,
5
+ ]
6
+ env.passthrough = [
7
+ " OPENSSL_LIB_DIR=/usr/lib/aarch64-linux-gnu" ,
8
+ " OPENSSL_INCLUDE_DIR=/usr/include/aarch64-linux-gnu/openssl" ,
9
+ " OPENSSL_STATIC=yes"
10
+ ]
11
+ image = " ghcr.io/cross-rs/aarch64-unknown-linux-gnu:edge"
You can’t perform that action at this time.
0 commit comments