summaryrefslogtreecommitdiff
path: root/.github/workflows/ios_builds.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ios_builds.yml')
-rw-r--r--.github/workflows/ios_builds.yml14
1 files changed, 11 insertions, 3 deletions
diff --git a/.github/workflows/ios_builds.yml b/.github/workflows/ios_builds.yml
index 0657a6cb18..80db5d68ce 100644
--- a/.github/workflows/ios_builds.yml
+++ b/.github/workflows/ios_builds.yml
@@ -1,9 +1,10 @@
-name: iOS Builds
+name: 🍏 iOS Builds
on: [push, pull_request]
-# Global Cache Settings
+# Global Settings
env:
GODOT_BASE_BRANCH: master
+ SCONSFLAGS: platform=iphone verbose=yes warnings=all werror=yes --jobs=2
SCONS_CACHE_LIMIT: 4096
jobs:
@@ -47,4 +48,11 @@ jobs:
env:
SCONS_CACHE: ${{github.workspace}}/.scons_cache/
run: |
- scons -j2 verbose=yes warnings=all werror=yes platform=iphone target=release tools=no
+ scons target=release tools=no
+ ls -l bin/
+
+ - uses: actions/upload-artifact@v2
+ with:
+ name: ${{ github.job }}
+ path: bin/*
+ retention-days: 14