Skip to content

Commit

Permalink
Merge pull request kpu#373 from kpu/fix-ubuntu
Browse files Browse the repository at this point in the history
[CI] Maybe an apt-get update first?
  • Loading branch information
kpu authored Feb 21, 2022
2 parents b32c193 + b439f73 commit 217e219
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: dependencies
run: sudo apt-get install -y build-essential libboost-all-dev cmake zlib1g-dev libbz2-dev liblzma-dev
run: |
sudo apt-get update
sudo apt-get install -y build-essential libboost-all-dev cmake zlib1g-dev libbz2-dev liblzma-dev
- name: cmake
run: |
cmake -E make_directory build
Expand Down

0 comments on commit 217e219

Please sign in to comment.