diff options
| author | Reinhold Gschweicher <pyro4hell@gmail.com> | 2023-09-21 23:10:38 +0200 |
|---|---|---|
| committer | NeroBurner <pyro4hell@gmail.com> | 2023-10-26 22:45:01 +0200 |
| commit | e6b96c286376454b0aeab3c1444f4d106d755b94 (patch) | |
| tree | bf8f59227548a6212931256faa9329bf456a59eb /.github | |
| parent | 77546c9fe2ea22af6989dccf2f600d7f4cf8f549 (diff) | |
CI: install build resource dependency python3-pil package
Used by script `lv_img_conv.py`, should be provided by docker image, but
until then explicitly install in workflow.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/main.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fc0f042d..c24e2374 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -31,6 +31,10 @@ jobs: uses: actions/checkout@v3 with: submodules: recursive + - name: Install resource build dependencies + run: | + apt-get update + apt-get -y install --no-install-recommends python3-pil - name: Build shell: bash run: /opt/build.sh all |
