From 669556cf9e90db9b12f869f3c9ef2a232e31aa5b Mon Sep 17 00:00:00 2001 From: KIM CHAN HEE <85754295+chanhihi@users.noreply.github.com> Date: Tue, 5 Mar 2024 13:35:25 +0900 Subject: [PATCH] docs: delete test ios.yml --- .github/workflows/ios.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index 5507361..0054184 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -7,18 +7,17 @@ on: branches: [ "main" ] jobs: - build-and-test-module03: - name: Build and Test Module03 + build-module03: + name: Build Module03 runs-on: macos-latest steps: - name: Checkout uses: actions/checkout@v3 - - name: Build and Test Module03 Project + - name: Build Module03 Project run: | xcodebuild build-for-testing -project Module03/weatherfinal_proj/weather_proj.xcodeproj -scheme weather_proj -destination 'platform=iOS Simulator,name=iPhone 14 Pro Max' -derivedDataPath './build' - xcodebuild test-without-building -project Module03/weatherfinal_proj/weather_proj.xcodeproj -scheme weather_proj -destination 'platform=iOS Simulator,name=iPhone 14 Pro Max' -derivedDataPath './build' - name: Upload Module03 Build Artifacts uses: actions/upload-artifact@v3 @@ -26,19 +25,18 @@ jobs: name: module03-build-artifacts path: Module03/build/Build/Products/* - build-and-test-weatherplus: - name: Build and Test WeatherPlus + build-weatherplus: + name: Build WeatherPlus runs-on: macos-latest - needs: build-and-test-module03 + needs: build-module03 steps: - name: Checkout uses: actions/checkout@v3 - - name: Build and Test WeatherPlus Project + - name: Build WeatherPlus Project run: | xcodebuild build-for-testing -project WeatherApp/weatherplusproj/weather_proj.xcodeproj -scheme weather_proj -destination 'platform=iOS Simulator,name=iPhone 14 Pro Max' -derivedDataPath './build' - xcodebuild test-without-building -project WeatherApp/weatherplusproj/weather_proj.xcodeproj -scheme weather_proj -destination 'platform=iOS Simulator,name=iPhone 14 Pro Max' -derivedDataPath './build' - name: Upload WeatherPlus Build Artifacts uses: actions/upload-artifact@v3