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 c571230 commit 51b3ae1Copy full SHA for 51b3ae1
.github/workflows/ci.yml
@@ -13,6 +13,7 @@ env:
13
14
jobs:
15
test:
16
+ name: Running Tests
17
runs-on: ubuntu-latest
18
steps:
19
- name: Checkout Repo
@@ -79,10 +80,14 @@ jobs:
79
80
81
uses: actions/checkout@v4
82
- - name: Install Dependencies - musl
83
+ - name: Ubuntu - Install Dependencies - musl
84
+ if: matrix.rust_target == 'x86_64-unknown-linux-musl'
85
+ run: |
86
+ sudo apt-get install -y musl-tools libssl-dev pkg-config perl
87
+
88
+ - name: Rustup - Install Dependencies - musl
89
if: matrix.rust_target == 'x86_64-unknown-linux-musl'
90
run: |
- sudo apt-get install -y musl-tools libssl-dev pkg-config
91
rustup target add x86_64-unknown-linux-musl
92
93
- name: Build
0 commit comments