Skip to content

Commit

Permalink
Install libegl1 for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jgoguen committed Aug 2, 2024
1 parent 2edaeed commit d9cac50
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ name: CI

# Controls when the action will run. Workflow runs when manually triggered
# using the UI or API.
'on':
"on":
push:
branches:
- '*'
- "*"
pull_request:

# A workflow run is made up of one or more jobs that can run sequentially or
Expand All @@ -20,7 +20,7 @@ jobs:
fail-fast: false
matrix:
os:
- 'ubuntu-latest'
- "ubuntu-latest"

steps:
- uses: actions/checkout@v3
Expand All @@ -34,7 +34,7 @@ jobs:
run: |
PLATFORM=$(uname)
if [ "${PLATFORM}" = "Linux" ]; then
sudo apt-get install -y zsh gettext
sudo apt-get install -y zsh gettext libegl1
fi
# yamllint disable rule:line-length
Expand All @@ -45,7 +45,6 @@ jobs:
printf 'CALIBRE_CONFIG_DIRECTORY="%s"\n' "${CALIBRE_DIR}/config" >>"${GITHUB_ENV}"
printf 'CALIBRE_TEMP_DIR="%s"\n' "${CALIBRE_DIR}/tmp" >>"${GITHUB_ENV}"
# yamllint enable rule:line-length

- name: Create calibre directories
run: |
mkdir -p "${CALIBRE_CONFIG_DIRECTORY}" "${CALIBRE_TEMP_DIR}"
Expand Down

0 comments on commit d9cac50

Please sign in to comment.