Skip to content

Commit

Permalink
run apt update before apt install
Browse files Browse the repository at this point in the history
  • Loading branch information
nosracd committed Nov 20, 2024
1 parent c445dde commit dc115bb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/check_man_pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ jobs:
uses: actions/checkout@v3

- name: Install Dependencies
run: sudo apt install help2man libglib2.0-dev
run: |
sudo apt update
sudo apt install help2man libglib2.0-dev
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build ${{env.CMAKE_FLAGS}} -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/deploy_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:

- name: Install Dependencies
run: |
sudo apt update
sudo apt install doxygen liblua5.4-dev
pip install sphinx-rtd-theme Sphinx myst-parser
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:

- name: Install Dependencies
run: |
sudo apt update
sudo apt install liblua5.3-dev lua5.3 libjchart2d-java libglib2.0-dev
- name: Configure CMake
Expand Down Expand Up @@ -191,6 +192,7 @@ jobs:

- name: Install Dependencies
run: |
sudo apt update
sudo apt install doxygen liblua5.4-dev lua5.4 python3-sphinx-rtd-theme python3-sphinx python3-myst-parser libglib2.0-dev
- name: Build Docs
Expand All @@ -213,6 +215,7 @@ jobs:

- name: Install Dependencies
run: |
sudo apt update
sudo apt install clang-format-15
- name: Check formatting
Expand Down

0 comments on commit dc115bb

Please sign in to comment.