Skip to content

Commit

Permalink
workflows: Fix InfiniSim CI build
Browse files Browse the repository at this point in the history
InfiniSim has removed the libpng submodule and moved it to a system
dependency.
  • Loading branch information
FintasticMan authored and NeroBurner committed Sep 18, 2023
1 parent 0aead42 commit 3a7dfdb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ jobs:
build-simulator:
runs-on: ubuntu-22.04
steps:
- name: Install SDL2 development package
- name: Install SDL2 and libpng development package
run: |
sudo apt-get update
sudo apt-get -y install libsdl2-dev
sudo apt-get -y install libsdl2-dev libpng-dev
- name: Install Ninja
run: |
Expand All @@ -82,7 +82,7 @@ jobs:
- name: Get InfiniSim repo
run: |
git clone https://github.com/InfiniTimeOrg/InfiniSim.git --depth 1 --branch main
git -C InfiniSim submodule update --init lv_drivers libpng
git -C InfiniSim submodule update --init lv_drivers
- name: CMake
# disable BUILD_RESOURCES as this is already done when building the firmware
Expand Down

0 comments on commit 3a7dfdb

Please sign in to comment.