Skip to content

Commit

Permalink
[github actions] need to apt-get update
Browse files Browse the repository at this point in the history
  • Loading branch information
r00t- committed Apr 3, 2021
1 parent 4341981 commit fe93777
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build+test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: install deps
run: sudo apt-get install libjson-c-dev libcurl4-openssl-dev libmicrohttpd-dev libgcrypt20-dev libsasl2-dev libunistring-dev libmosquitto-dev
run: sudo apt-get update && sudo apt-get install libjson-c-dev libcurl4-openssl-dev libmicrohttpd-dev libgcrypt20-dev libsasl2-dev libunistring-dev libmosquitto-dev
- name: build libsml
run: git clone https://github.com/volkszaehler/libsml.git ../libsml && cd ../libsml && make
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-formatting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: install clang-format
run: sudo apt-get install clang-format
run: sudo apt-get update && sudo apt-get install clang-format
- uses: actions/checkout@v2
- run: ./check-formatting.sh

0 comments on commit fe93777

Please sign in to comment.