webclient: Reduce initial stack size in makefile compiled builds #10
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: Build latest (iOS) | |
# trigger via either push to selected branches or on manual run | |
on: | |
push: | |
branches: | |
- main | |
- master | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.ref }}-ios | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: macOS-13 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Compile iOS build | |
id: compile | |
run: | | |
cd misc/ios | |
sudo xcode-select -s /Applications/Xcode_14.1.app/Contents/Developer | |
xcodebuild -sdk iphoneos -configuration Release CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO | |
cd build/Release-iphoneos | |
mkdir Payload | |
mv ClassiCube.app Payload/ClassiCube.app | |
zip -r cc.ipa Payload | |
- uses: ./.github/actions/notify_failure | |
if: ${{ always() && steps.compile.outcome == 'failure' }} | |
with: | |
NOTIFY_MESSAGE: 'Failed to compile iOS build' | |
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}' | |
- uses: ./.github/actions/upload_build | |
if: ${{ always() && steps.compile.outcome == 'success' }} | |
with: | |
SOURCE_FILE: 'misc/ios/build/Release-iphoneos/cc.ipa' | |
DEST_NAME: 'cc.ipa' | |
- uses: ./.github/actions/notify_success | |
if: ${{ always() && steps.compile.outcome == 'success' }} | |
with: | |
DESTINATION_URL: '${{ secrets.NOTIFY_URL }}' | |
WORKFLOW_NAME: 'ios' |