Skip to content

Commit

Permalink
[SkipCI][CI] Install gettext before building FontForge
Browse files Browse the repository at this point in the history
  • Loading branch information
ViliusSutkus89 committed Nov 3, 2023
1 parent af70907 commit f2242c5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ on:
required: false
type: string
default: ''
apt_packages:
required: false
type: string
default: ''
jobs:
build:
if: "!contains(github.event.head_commit.message, '[SkipCI]')"
Expand All @@ -33,6 +37,8 @@ jobs:
- uses: android-actions/setup-android@v3
- run: sdkmanager "ndk;${{ matrix.ndk }}"
- run: pip3 install --user ninja meson
- run: sudo apt-get install --yes ${{ inputs.apt_packages }}
if: inputs.apt_packages

- uses: actions/checkout@v4

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/fontforge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,20 @@ jobs:
with:
package: fontforge
version: '20230101'
apt_packages: gettext

build-fontforge-20200314:
name: fontforge 20200314
uses: ./.github/workflows/build.yml
with:
package: fontforge
version: '20200314'
apt_packages: gettext

build-fontforge-20170731:
name: fontforge 20170731
uses: ./.github/workflows/build.yml
with:
package: fontforge
version: '20170731'
apt_packages: gettext

0 comments on commit f2242c5

Please sign in to comment.