Skip to content

Commit

Permalink
chore(ci): make sure apt index is not stale before installing valgrind
Browse files Browse the repository at this point in the history
  • Loading branch information
adriencaccia committed Dec 9, 2023
1 parent 25db20d commit 894136d
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ jobs:
- uses: "actions/checkout@v3"
with:
fetch-depth: 0
- run: sudo apt-get install -y valgrind
- name: Install valgrind
run: |
sudo apt-get update
sudo apt-get install -y valgrind
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
with:
Expand Down Expand Up @@ -48,7 +51,10 @@ jobs:
- uses: "actions/checkout@v3"
with:
fetch-depth: 0
- run: sudo apt-get install -y valgrind
- name: Install valgrind
run: |
sudo apt-get update
sudo apt-get install -y valgrind
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
with:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/codspeed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ jobs:
- uses: "actions/checkout@v3"
with:
fetch-depth: 0
- run: sudo apt-get install -y valgrind
- name: Install valgrind
run: |
sudo apt-get update
sudo apt-get install -y valgrind
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
with:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ jobs:
node-version-file: .nvmrc
registry-url: "https://registry.npmjs.org"
- run: pnpm install --frozen-lockfile --prefer-offline
- run: sudo apt-get install -y valgrind
- name: Install valgrind
run: |
sudo apt-get update
sudo apt-get install -y valgrind
- name: Build the libraries
run: pnpm moon run :build
Expand Down

0 comments on commit 894136d

Please sign in to comment.