forked from mkxp-z/mkxp-z
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/dev' into dev
- Loading branch information
Showing
56 changed files
with
1,148 additions
and
715 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 |
---|---|---|
|
@@ -34,7 +34,7 @@ jobs: | |
mingw-w64-ucrt-x86_64-boost | ||
mingw-w64-ucrt-x86_64-egl-headers | ||
mingw-w64-ucrt-x86_64-gles-headers | ||
zip | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
@@ -56,7 +56,7 @@ jobs: | |
shell: msys2 {0} | ||
run: | | ||
source windows/vars.sh | ||
meson build | ||
meson setup build | ||
cd build | ||
ninja | ||
strip ./oneshot.exe | ||
|
@@ -76,6 +76,11 @@ jobs: | |
cp ../journal/_______.exe . | ||
cp ../../mkxp.json . | ||
cp ../../assets/LICENSE.mkxp-z-with-https.txt . | ||
cd .. | ||
# Zipping before uploading decreases the upload time considerably. | ||
# Unfortunately this results in double-zipping; tracked at: | ||
# https://github.com/actions/upload-artifact/issues/426 | ||
zip -r artifact.zip artifact | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
|
@@ -136,7 +141,6 @@ jobs: | |
name: mkxp-z.linux.x86_64.${{github.event_name == 'pull_request' && format('PR{0}', github.event.number) || github.ref_name}}-${{steps.short-sha.outputs.sha}} | ||
path: build/lib.zip | ||
|
||
# We do not care about supporting either of these platforms. | ||
# build-linux-cross: | ||
# name: Ubuntu 22.04 ${{matrix.arch_mkxpz}} | ||
# runs-on: ubuntu-22.04 | ||
|
@@ -148,13 +152,11 @@ jobs: | |
# - arch_mkxpz: armv6 | ||
# arch_debian: armhf | ||
# arch_gcc: arm-linux-gnueabihf | ||
# # GCC doesn't like the -mcpu flags, TODO investigate. | ||
# experimental: true | ||
# experimental: false | ||
# - arch_mkxpz: armv7 | ||
# arch_debian: armhf | ||
# arch_gcc: arm-linux-gnueabihf | ||
# # GCC doesn't like the -mcpu flags, TODO investigate. | ||
# experimental: true | ||
# experimental: false | ||
# - arch_mkxpz: armv7-neon | ||
# arch_debian: armhf | ||
# arch_gcc: arm-linux-gnueabihf | ||
|
@@ -171,11 +173,16 @@ jobs: | |
# arch_debian: ppc64el | ||
# arch_gcc: powerpc64le-linux-gnu | ||
# experimental: false | ||
# - arch_mkxpz: s390x | ||
# arch_debian: s390x | ||
# arch_gcc: s390x-linux-gnu | ||
# # src/util/serial-util.h errors on big-endian targets. | ||
# experimental: true | ||
# - arch_mkxpz: riscv64 | ||
# arch_debian: riscv64 | ||
# arch_gcc: riscv64-linux-gnu | ||
# # libjxl/highway compatibility issue, TODO check if fixed in later SDL_image. | ||
# # Also probably an OpenSSL arch name issue. | ||
# # Also probably an OpenSSL arch name issue, which might be fixed by now. | ||
# experimental: true | ||
# steps: | ||
# - uses: benjlevesque/[email protected] | ||
|
@@ -287,8 +294,8 @@ jobs: | |
# cp ../../../../assets/LICENSE.mkxp-z-with-https.txt ./Z-universal.app/ | ||
# ditto -c -k --sequesterRsrc --keepParent Z-universal.app Z-universal.app.zip | ||
|
||
# - name: Upload archive | ||
# uses: actions/upload-artifact@v3 | ||
# with: | ||
# name: mkxp-z.macos.${{github.event_name == 'pull_request' && format('PR{0}', github.event.number) || github.ref_name}}-${{steps.short-sha.outputs.sha}} | ||
# path: build/Build/Products/Release/Z-universal.app.zip | ||
# - name: Upload archive | ||
# uses: actions/upload-artifact@v3 | ||
# with: | ||
# name: mkxp-z.macos.${{github.event_name == 'pull_request' && format('PR{0}', github.event.number) || github.ref_name}}-${{steps.short-sha.outputs.sha}} | ||
# path: build/Build/Products/Release/Z-universal.app.zip |
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
Oops, something went wrong.