Skip to content

Commit 894136d

Browse files
committed
1 parent 25db20d commit 894136d

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ jobs:
1313
- uses: "actions/checkout@v3"
1414
with:
1515
fetch-depth: 0
16-
- run: sudo apt-get install -y valgrind
16+
- name: Install valgrind
17+
run: |
18+
sudo apt-get update
19+
sudo apt-get install -y valgrind
1720
- uses: pnpm/action-setup@v2
1821
- uses: actions/setup-node@v3
1922
with:
@@ -48,7 +51,10 @@ jobs:
4851
- uses: "actions/checkout@v3"
4952
with:
5053
fetch-depth: 0
51-
- run: sudo apt-get install -y valgrind
54+
- name: Install valgrind
55+
run: |
56+
sudo apt-get update
57+
sudo apt-get install -y valgrind
5258
- uses: pnpm/action-setup@v2
5359
- uses: actions/setup-node@v3
5460
with:

.github/workflows/codspeed.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ jobs:
1313
- uses: "actions/checkout@v3"
1414
with:
1515
fetch-depth: 0
16-
- run: sudo apt-get install -y valgrind
16+
- name: Install valgrind
17+
run: |
18+
sudo apt-get update
19+
sudo apt-get install -y valgrind
1720
- uses: pnpm/action-setup@v2
1821
- uses: actions/setup-node@v3
1922
with:

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@ jobs:
2424
node-version-file: .nvmrc
2525
registry-url: "https://registry.npmjs.org"
2626
- run: pnpm install --frozen-lockfile --prefer-offline
27-
- run: sudo apt-get install -y valgrind
27+
- name: Install valgrind
28+
run: |
29+
sudo apt-get update
30+
sudo apt-get install -y valgrind
2831
2932
- name: Build the libraries
3033
run: pnpm moon run :build

0 commit comments

Comments
 (0)