Skip to content

Commit

Permalink
Update build_installers.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
lufre1 authored Apr 25, 2024
1 parent 7b42867 commit 11397e8
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/build_installers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
RUN_SCRIPT_WINDOWS: |
python version_getter.py
mkdir ./${{ matrix.os }}_x86_64
constructor --output-dir ./${{ matrix.os }}_x86_64 . --data deployment/windows-latest_x86_64/freetype.dll:freetype.dll
constructor --output-dir ./${{ matrix.os }}_x86_64 . --data ../windows-latest_x86_64/freetype.dll:freetype.dll
RUN_SCRIPT: |
python version_getter.py
Expand Down Expand Up @@ -58,6 +58,14 @@ jobs:
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true

- name: download freetype.dll
if: matrix.os == 'windows-latest'
shell: bash -el {0}
run: |
wget https://downloads.sourceforge.net/freetype/freetype-2.13.2.tar.xz
tar -xf freetype-2.13.2.tar.xz
rm freetype-2.13.2.tar.xz
- name: build ${{ matrix.os }}_x86_64
if: matrix.os == 'windows-latest'
shell: pwsh
Expand All @@ -67,9 +75,6 @@ jobs:
mamba install -c anaconda menuinst
python windows_menu_setup.py
conda activate base
wget https://downloads.sourceforge.net/freetype/freetype-2.13.2.tar.xz
tar -xf freetype-2.13.2.tar.xz
rm freetype-2.13.2.tar.xz
${{ env.RUN_SCRIPT_WINDOWS }}
- name: build ${{ matrix.os }}_x86_64
Expand Down

0 comments on commit 11397e8

Please sign in to comment.