Skip to content
This repository was archived by the owner on Nov 26, 2025. It is now read-only.

Commit 126285f

Browse files
committed
ci: fix pipeline by removing archive step for iOS and redundant cd ios
1 parent 1576f1b commit 126285f

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

.github/workflows/react-native-performance.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
yarn
7575
yarn test --forceExit
7676
metro-ios:
77-
name: "Metro bundling for iOS"
77+
name: 'Metro bundling for iOS'
7878
runs-on: macos-latest
7979
steps:
8080
- uses: actions/checkout@v3
@@ -89,7 +89,7 @@ jobs:
8989
mkdir -p /tmp/artifacts
9090
yarn react-native bundle --entry-file index.js --platform ios --bundle-output /tmp/artifacts/bundle.js --sourcemap-output /tmp/artifacts/output.map
9191
metro-android:
92-
name: "Metro bundling for Android"
92+
name: 'Metro bundling for Android'
9393
runs-on: ubuntu-latest
9494
steps:
9595
- uses: actions/checkout@v3
@@ -103,7 +103,7 @@ jobs:
103103
mkdir -p /tmp/artifacts
104104
./gradlew bundleDebugJsAndAssets
105105
build-ios:
106-
name: "Build iOS"
106+
name: 'Build iOS'
107107
runs-on: macos-latest
108108
steps:
109109
- uses: actions/checkout@v3
@@ -119,17 +119,11 @@ jobs:
119119
bundle install
120120
cd fixture
121121
yarn
122-
cd ios
123122
bundle exec pod install
124123
mkdir -p /tmp/artifacts
125124
set -o pipefail && env NSUnbufferedIO=YES xcodebuild clean build -scheme ReactNativePerformanceFixture -workspace ReactNativePerformanceFixture.xcworkspace -destination 'platform=iOS Simulator,name=iPhone 11,OS=latest' | tee /tmp/artifacts/ios_build.log
126-
- name: Archive iOS build artifacts
127-
uses: actions/upload-artifact@v3
128-
with:
129-
name: ios-build-artifacts
130-
path: /tmp/artifacts
131125
build-android:
132-
name: "Build Android"
126+
name: 'Build Android'
133127
runs-on: ubuntu-latest
134128
steps:
135129
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)