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

chore: remove ios CI check #919

Merged
merged 1 commit into from
May 13, 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
32 changes: 0 additions & 32 deletions .github/workflows/branch-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,35 +77,3 @@ jobs:
git branch -D apk
git branch -m apk
git push --force origin apk

build-ios:
runs-on: macos-latest
name: iOS Build

steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: Pods
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
restore-keys: |
${{ runner.os }}-pods-
- uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Setup Fastlane
run: bundle install
- name: Install Swiftlint
run: brew install swiftlint || brew link --overwrite swiftlint
- name: Remove Project from Gradle Settings
run: echo "include ':BadgeMagicModule'" > settings.gradle
- name: Run Scripts
run: |
cd iOS
bundle exec fastlane run swiftlint strict:"true"
bundle exec fastlane gym --skip_codesigning --skip_archive --skip_package_ipa
cd ..

Loading