We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d7c6a9 commit 388fda4Copy full SHA for 388fda4
.github/workflows/rust.yml
@@ -139,7 +139,11 @@ jobs:
139
toolchain: nightly
140
override: true
141
components: rustfmt, clippy
142
+ - name: Build Rust MacOS
143
+ if: runner.os == 'macOS'
144
+ run: export CMAKE_POLICY_VERSION_MINIMUM=3.5 && cargo build --verbose --release
145
- name: Build Rust
146
+ if: runner.os != 'macOS'
147
run: cargo build --verbose --release
148
- name: Create macOS app bundle
149
run: |
0 commit comments