Skip to content

Commit 4f952b4

Browse files
committed
ci: install libgmp
1 parent 4d29972 commit 4f952b4

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

.github/workflows/release.yml

+7-8
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,8 @@ jobs:
1212
runs-on: ${{ matrix.os }}
1313
strategy:
1414
matrix:
15-
platform: [macos-x86_64, linux_glibc-x86_64, linux_musl-x86_64]
15+
platform: [linux_glibc-x86_64, linux_musl-x86_64]
1616
include:
17-
18-
- platform: macos-x86_64
19-
target: x86_64-apple-darwin
20-
os: macos-latest
21-
bin: fibonacci
2217

2318
- platform: linux_glibc-x86_64
2419
target: x86_64-unknown-linux-gnu
@@ -40,9 +35,13 @@ jobs:
4035

4136
- name: Checkout code
4237
uses: actions/checkout@v1
38+
39+
- name: Install dependencies
40+
run: |
41+
sudo apt-get update
42+
sudo apt-get upgrade
43+
sudo apt-get install libgmp-dev
4344
44-
- name: some tricks for featrues
45-
run: export RUSTC_BOOTSTRAP=1
4645
4746
- name: Run code build
4847
uses: actions-rs/cargo@v1

0 commit comments

Comments
 (0)