Skip to content

Commit b7333b4

Browse files
committed
Merge branch 'main' into feature/add-create-window-function
2 parents 9296531 + ba4f733 commit b7333b4

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/test.yaml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ jobs:
4141
fail-fast: false
4242
matrix:
4343
target:
44-
# - arm-unknown-linux-gnueabi # "failed to merge target specific data of file ..."
44+
- arm-unknown-linux-gnueabi # "failed to merge target specific data of file ..."
4545
- arm-unknown-linux-gnueabihf
4646
- armv7-unknown-linux-gnueabihf
47-
#- armv7-unknown-linux-musleabihf # "cannot produce cdylib ... as the target `armv7-unknown-linux-musleabihf` does not support these crate types"
47+
- armv7-unknown-linux-musleabihf # "cannot produce cdylib ... as the target `armv7-unknown-linux-musleabihf` does not support these crate types"
4848
- x86_64-unknown-linux-gnu
49-
#- x86_64-unknown-linux-musl # cannot produce cdylib ... as the target `x86_64-unknown-linux-musl` does not support these crate types
49+
- x86_64-unknown-linux-musl
5050
- aarch64-unknown-linux-gnu
51-
#- aarch64-unknown-linux-musl # cannot produce cdylib for ... as the target `aarch64-unknown-linux-musl` does not support these crate types
51+
- aarch64-unknown-linux-musl # cannot produce cdylib for ... as the target `aarch64-unknown-linux-musl` does not support these crate types
5252
steps:
5353
- uses: actions/checkout@v2
5454
- uses: actions/cache@v3
@@ -63,9 +63,11 @@ jobs:
6363
- uses: actions-rs/toolchain@v1
6464
with:
6565
toolchain: stable
66-
- run: sudo apt-get install -qq crossbuild-essential-arm64 crossbuild-essential-armhf gcc-arm-linux-gnueabi
66+
- run: sudo apt-get update && sudo apt-get install -qq crossbuild-essential-arm64 crossbuild-essential-armhf gcc-arm-linux-gnueabi musl-tools
6767
- run: rustup target add ${{ matrix.target }}
6868
- run: cargo build --examples --verbose --target ${{ matrix.target }}
69+
env:
70+
RUSTFLAGS: "-C target-feature=-crt-static"
6971
- name: Upload artifacts
7072
uses: actions/upload-artifact@v2
7173
with:

0 commit comments

Comments
 (0)