We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c130ba commit a713f14Copy full SHA for a713f14
.github/workflows/nightly.yaml
@@ -36,6 +36,10 @@ jobs:
36
NAME: aarch64-linux,
37
TARGET: aarch64-unknown-linux-musl,
38
}
39
+ - {
40
+ NAME: riscv64-linux,
41
+ TARGET: riscv64gc-unknown-linux-musl
42
+ }
43
steps:
44
- name: Checkout
45
uses: actions/checkout@v4
@@ -64,7 +68,7 @@ jobs:
64
68
target: ${{ matrix.build.TARGET }}
65
69
66
70
- name: Build
67
- run: cargo build --release --locked --target ${{ matrix.build.TARGET }}
71
+ run: RUSTFLAGS="-C target-feature=+crt-static" cargo build --release --locked --target ${{ matrix.build.TARGET }}
72
73
- name: Prepare nightly binary
74
shell: bash
0 commit comments