Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update build tests to use the new platform names #5

Merged
merged 1 commit into from
Dec 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/build-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
os: ubuntu-latest
artifact: linux-editor
build-options: production=yes target=release_debug
rebel-executable: rebel.x11.opt.tools.64
rebel-executable: rebel.linux.opt.tools.64

- name: Build Linux Rebel Engine 32 bit
os: ubuntu-latest
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
os: macOS-latest
artifact: macos-editor
build-options: production=yes target=release_debug
rebel-executable: rebel.osx.opt.tools.64
rebel-executable: rebel.macos.opt.tools.64

- name: Build Android Rebel Engine Library
os: ubuntu-latest
Expand All @@ -58,14 +58,14 @@ jobs:
- name: Build iOS Rebel Engine Library
os: macOS-latest
artifact: ios-engine-library-arm64
build-options: platform=iphone production=yes tools=no target=release
rebel-executable: librebel.iphone.opt.arm64.a
build-options: platform=ios production=yes tools=no target=release
rebel-executable: librebel.ios.opt.arm64.a

- name: Build Web Rebel Engine
os: ubuntu-latest
artifact: web-engine
build-options: platform=javascript production=yes tools=no target=release
rebel-executable: rebel.javascript.opt.zip
build-options: platform=web production=yes tools=no target=release
rebel-executable: rebel.web.opt.zip

steps:
- name: Checkout Rebel Build Action
Expand Down
Loading