Skip to content

Commit

Permalink
run apt-get update and upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
andy5995 committed Aug 19, 2022
1 parent 70e42c9 commit 6548ce4
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Get dependencies
run: sudo mk/linux/setupBuildDeps.sh
run: |
sudo apt-get update && sudo apt-get upgrade
sudo mk/linux/setupBuildDeps.sh
- name: Build
run: |
if [ "${MATRIX_COMPILER}" = "clang" ]; then
Expand Down Expand Up @@ -61,7 +63,10 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Get dependencies
run: sudo mk/linux/setupBuildDeps.sh
run: |
sudo apt-get update && sudo apt-get upgrade
sudo apt-get install -y $CXX
sudo mk/linux/setupBuildDeps.sh
- name: Build
run: |
mk/linux/build-mg.sh -d -m
Expand Down

0 comments on commit 6548ce4

Please sign in to comment.