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 05f8017 commit 9c7d462Copy full SHA for 9c7d462
.github/workflows/release.yml
@@ -64,6 +64,9 @@ jobs:
64
run: sudo apt-get update && sudo apt-get install -y musl-tools
65
- name: Build
66
run: cargo build --profile production --target ${{ matrix.target }} --all-features
67
+ env:
68
+ CC: ${{ runner.os == 'Linux' && 'musl-gcc' || '' }}
69
+ CXX: ${{ runner.os == 'Linux' && 'g++' || '' }}
70
- name: Package (Linux/macOS)
71
if: runner.os != 'Windows'
72
run: tar -czf ferrumc-${{ github.ref_name }}-${{ matrix.target }}.tar.gz -C target/${{ matrix.target }}/production ferrumc
0 commit comments