aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/main.yml
diff options
context:
space:
mode:
authorFintasticMan <finlay.neon.kid@gmail.com>2023-09-18 14:22:40 +0200
committerNeroBurner <pyro4hell@gmail.com>2023-09-18 15:26:09 +0200
commit3a7dfdba8e5da4202155fef53673240fa0f22f5a (patch)
treeb3ebc989ecd5f32a0686b944a485425a017f3ac3 /.github/workflows/main.yml
parent0aead42fdf5137becefb11f056fe8e567e2f454a (diff)
workflows: Fix InfiniSim CI build
InfiniSim has removed the libpng submodule and moved it to a system dependency.
Diffstat (limited to '.github/workflows/main.yml')
-rw-r--r--.github/workflows/main.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 89c1b276..fc0f042d 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -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: |
@@ -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