Skip to content

Commit

Permalink
Move apt install to separate step
Browse files Browse the repository at this point in the history
  • Loading branch information
iBug committed Jan 18, 2025
1 parent d9b8e24 commit 808060d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,18 @@ jobs:
restore-keys: |
${{ runner.os }}-npm-${{ env.CACHE_ID }}-
- name: Install system packages
run: |
sudo debconf-communicate <<< "set man-db/auto-update false"
sudo dpkg-reconfigure man-db
sudo apt update
sudo NEEDRESTART_SUSPEND=1 \
apt install -y libgsl-dev
- name: Install dependencies
env:
MAKE: 'make -j4'
run: |
sudo apt update && sudo apt install -y libgsl-dev
bundle config set --local path vendor/bundle
bundle config set without 'development'
bundle install --jobs=4 --retry=3
Expand Down

0 comments on commit 808060d

Please sign in to comment.