Test #79
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: workflow_dispatch | |
env: | |
MAJOR: 0 | |
MINOR: 4 | |
MAN: 0 | |
YEAR: 2023 | |
LUA_V: 5.4.6 | |
MESA_V: 23.1.1 | |
GLEW_V: 2.2.0 | |
SDL_V: 2.26.5 | |
HARFBUZZ_V: 8.2.0 | |
jobs: | |
win: | |
runs-on: windows-latest | |
steps: | |
- uses: microsoft/[email protected] | |
- uses: actions/checkout@v3 | |
- name: download harfbuzz | |
uses: suisei-cn/[email protected] | |
with: | |
url: "https://github.com/harfbuzz/harfbuzz/releases/download/${{ env.HARFBUZZ_V }}/harfbuzz-${{ env.HARFBUZZ_V }}.tar.xz" | |
target: . | |
- name: Unzip harfbuzz | |
run: | | |
tar zxf harfbuzz-${{ env.HARFBUZZ_V }}.tar.xz | |
- name: compile harfbuzz as static lib | |
run: | | |
cd harfbuzz-${{ env.HARFBUZZ_V }}\src | |
gcc -c harfbuzz.cc -o harf.o -DHB_TINY | |
ar -rcs libharfbuzz.a harf.o | |
- name: copy harfbuzz static lib | |
run: cp ./harfbuzz-${{ env.HARFBUZZ_V }}/src/libharfbuzz.a ./ | |
- name: Upload the result | |
uses: actions/upload-artifact@v3 | |
with: | |
name: uploads | |
path: libharfbuzz.a | |
retention-days: 5 |