-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Try to build both x86_64 and arm64 (#5)
* Try to build both x86_64 and arm64 * try to fix the linux build
- Loading branch information
1 parent
66b0b6d
commit 19d6471
Showing
3 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,14 +19,14 @@ jobs: | |
uses: microsoft/[email protected] | ||
- name: Install Linux dependencies | ||
if: runner.os == 'Linux' | ||
run: sudo apt-get install build-essential git make cmake autoconf automake libpng-dev pkg-config meson | ||
run: sudo apt update && sudo apt-get install build-essential git make cmake autoconf automake libpng-dev pkg-config meson | ||
shell: bash | ||
- name: Clone repository | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: Run CAKE | ||
run: dotnet run --project ./build/Build.csproj | ||
run: dotnet run --project ./build/Build.csproj --universalBinary=true | ||
env: | ||
ACTIONS_RUNTIME_TOKEN: ${{ env.ACTIONS_RUNTIME_TOKEN }} | ||
ACTIONS_RUNTIME_URL: "${{ env.ACTIONS_RUNTIME_URL }}" | ||
|
@@ -46,7 +46,7 @@ jobs: | |
with: | ||
submodules: recursive | ||
- name: Run CAKE | ||
run: dotnet run --project ./build/Build.csproj -- --target=Package --libraryname=FreeType --licensepath=freetype/LICENSE.txt | ||
run: dotnet run --project ./build/Build.csproj -- --target=Package --universalBinary=true --libraryname=FreeType --licensepath=freetype/LICENSE.txt | ||
env: | ||
ACTIONS_RUNTIME_TOKEN: ${{ env.ACTIONS_RUNTIME_TOKEN }} | ||
ACTIONS_RUNTIME_URL: "${{ env.ACTIONS_RUNTIME_URL }}" | ||
|
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
Binary file not shown.