Skip to content

Commit

Permalink
[Build] Add update of apt packages
Browse files Browse the repository at this point in the history
  • Loading branch information
SpaiR committed Feb 6, 2023
1 parent f3c971c commit a126dd4
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,15 @@ jobs:

- name: Install MinGW-w64/GCC/G++ (Linux & Windows)
if: matrix.os == 'ubuntu-latest'
run: sudo apt install mingw-w64
run: |
sudo apt update
sudo apt install mingw-w64
- name: FreeType - Install (Linux)
if: matrix.os == 'ubuntu-latest' && matrix.type == 'linux' && matrix.freetype == true
run: sudo apt install libfreetype6-dev
run: |
sudo apt update
sudo apt install libfreetype6-dev
- name: FreeType - Install (Windows)
if: matrix.os == 'ubuntu-latest' && matrix.type == 'windows' && matrix.freetype == true
Expand Down

0 comments on commit a126dd4

Please sign in to comment.