We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d29972 commit 4f952b4Copy full SHA for 4f952b4
.github/workflows/release.yml
@@ -12,13 +12,8 @@ jobs:
12
runs-on: ${{ matrix.os }}
13
strategy:
14
matrix:
15
- platform: [macos-x86_64, linux_glibc-x86_64, linux_musl-x86_64]
+ platform: [linux_glibc-x86_64, linux_musl-x86_64]
16
include:
17
-
18
- - platform: macos-x86_64
19
- target: x86_64-apple-darwin
20
- os: macos-latest
21
- bin: fibonacci
22
23
- platform: linux_glibc-x86_64
24
target: x86_64-unknown-linux-gnu
@@ -40,9 +35,13 @@ jobs:
40
35
41
36
- name: Checkout code
42
37
uses: actions/checkout@v1
38
+
39
+ - name: Install dependencies
+ run: |
+ sudo apt-get update
+ sudo apt-get upgrade
43
+ sudo apt-get install libgmp-dev
44
- - name: some tricks for featrues
45
- run: export RUSTC_BOOTSTRAP=1
46
47
- name: Run code build
48
uses: actions-rs/cargo@v1
0 commit comments