Skip to content

Commit 51b3ae1

Browse files
committed
wip
1 parent c571230 commit 51b3ae1

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ env:
1313

1414
jobs:
1515
test:
16+
name: Running Tests
1617
runs-on: ubuntu-latest
1718
steps:
1819
- name: Checkout Repo
@@ -79,10 +80,14 @@ jobs:
7980
- name: Checkout Repo
8081
uses: actions/checkout@v4
8182

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
8389
if: matrix.rust_target == 'x86_64-unknown-linux-musl'
8490
run: |
85-
sudo apt-get install -y musl-tools libssl-dev pkg-config
8691
rustup target add x86_64-unknown-linux-musl
8792
8893
- name: Build

0 commit comments

Comments
 (0)