GitHub ios CI: Disable it for now

I give up on trying to figure out why it randomly freezes. With CircleCI
atleast I can ssh into the machine and run some more diagnostics.
This commit is contained in:
Vishesh Handa
2020-12-02 11:13:48 +01:00
parent e6ddf43792
commit ebfc49d1ee

View File

@ -1,33 +1,33 @@
name: CI (ios) # name: CI (ios)
on: # on:
push: # push:
branches: # branches:
- master # - master
jobs: # jobs:
build: # build:
runs-on: macos-10.14 # runs-on: macos-10.14
timeout-minutes: 30 # timeout-minutes: 30
steps: # steps:
- uses: actions/checkout@v1 # - uses: actions/checkout@v1
- name: Install gpg # - name: Install gpg
run: brew install git-crypt md5sha1sum # run: brew install git-crypt md5sha1sum
- name: Unlock Secrets # - name: Unlock Secrets
env: # env:
GITCRYPT_KEY: ${{ secrets.GITCRYPT_KEY }} # GITCRYPT_KEY: ${{ secrets.GITCRYPT_KEY }}
run: ./scripts/decrypt_secrets.sh # run: ./scripts/decrypt_secrets.sh
- name: Setup provisioning profile # - name: Setup provisioning profile
run: ./scripts/add_ios_keys.sh # run: ./scripts/add_ios_keys.sh
- uses: subosito/flutter-action@v1 # - uses: subosito/flutter-action@v1
with: # with:
flutter-version: "1.22.1" # flutter-version: "1.22.1"
- run: flutter pub get # - run: flutter pub get
- run: dart ./scripts/setup_env.dart # - run: dart ./scripts/setup_env.dart
env: # env:
SENTRY_DSN: ${{ secrets.SENTRY_DSN }} # SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
#- run: flutter test # #- run: flutter test
- run: ./scripts/build_ios.sh # - run: ./scripts/build_ios.sh
env: # env:
FASTLANE_PASSWORD: ${{ secrets.FASTLANE_PASSWORD }} # FASTLANE_PASSWORD: ${{ secrets.FASTLANE_PASSWORD }}
SENTRY_DSN: ${{ secrets.SENTRY_DSN }} # SENTRY_DSN: ${{ secrets.SENTRY_DSN }}