We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2df36ce commit f226161Copy full SHA for f226161
2 files changed
.github/workflows/ci.yml
@@ -33,8 +33,11 @@ jobs:
33
key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle-wrapper.properties') }}
34
restore-keys: |
35
${{ runner.os }}-gradle-
36
- - name: Install Cross
37
- run: cargo install cross --git https://github.com/cross-rs/cross
+ - name: Set up GCC
+ uses: egor-tensin/setup-gcc@v1
38
+ with:
39
+ version: latest
40
+ platform: x64
41
- name: Build and publish artifacts
42
run: ./gradlew publish --info --stacktrace
43
env:
native/build.gradle.kts
@@ -163,7 +163,7 @@ tasks {
163
doFirst {
164
for (target in RUST_TARGETS) {
165
execOperations.exec {
166
- commandLine(if (target.isHost()) "cargo" else "cross")
+ commandLine("cargo")
167
168
val args = mutableListOf(
169
"build", "--release",
0 commit comments