From 25c0eb5860283780ce0053f559f423117082d709 Mon Sep 17 00:00:00 2001 From: Tiago Jacobs Date: Tue, 1 Mar 2022 17:32:41 -0300 Subject: [PATCH] Create ios.yml --- .github/workflows/ios.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/ios.yml diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml new file mode 100644 index 0000000..96ec896 --- /dev/null +++ b/.github/workflows/ios.yml @@ -0,0 +1,26 @@ +name: iOS +on: [push, pull_request] +jobs: + build: + runs-on: macos-latest + steps: + - uses: actions/checkout@v2 + - name: Use Node.js + uses: actions/setup-node@v1 + with: + node-version: 14.x + - run: npm ci + - run: xcode-select -p + - run: pod install + working-directory: ios + name: Install pod dependencies + - name: Build iOS (debug) + run: "xcodebuild \ + -workspace ios/BigBlueButton.xcworkspace \ + -scheme BigBlueButton \ + clean archive \ + -sdk iphoneos \ + -configuration Debug \ + -UseModernBuildSystem=NO \ + -archivePath $PWD/BigBlueButton \ + CODE_SIGNING_ALLOWED=NO"