From 2a4b3e2af5c673801397354ca419d94905330485 Mon Sep 17 00:00:00 2001 From: hoon Date: Tue, 23 Jan 2024 02:37:54 +0900 Subject: [PATCH] =?UTF-8?q?feat=20:=20=ED=85=8C=EC=8A=A4=ED=8A=B8=20?= =?UTF-8?q?=EC=BB=A4=EB=B0=8B=20(#89)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/action-test-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/action-test-ci.yml b/.github/workflows/action-test-ci.yml index b9780140..61aad414 100644 --- a/.github/workflows/action-test-ci.yml +++ b/.github/workflows/action-test-ci.yml @@ -16,7 +16,7 @@ on: # 트리거 발생 시 실행할 작업들 jobs: test: - runs-on: macos-13 # iOS 플랫폼에서 실행 + runs-on: self-hosted # iOS 플랫폼에서 실행 steps: #Select your required version @@ -42,8 +42,8 @@ jobs: pod install --repo-update --clean-install --project-directory=KCS - name: Build - run: xcodebuild build-for-testing -workspace KCS/KCS.xcworkspace -scheme "KCS" -destination "platform=iOS Simulator,name=iPhone 14,OS=17.2" + run: xcodebuild build-for-testing -workspace KCS/KCS.xcworkspace -scheme "KCS" -destination "platform=iOS Simulator,name=iPhone 14,OS=17.0" - - name: Build and test + - name: Test run: | - xcodebuild test-without-building -workspace KCS/KCS.xcworkspace -scheme "KCS" -destination "platform=iOS Simulator,name=iPhone 14,OS=17.2" \ No newline at end of file + xcodebuild test-without-building -scheme "KCS" -destination "platform=iOS Simulator,name=iPhone 14,OS=17.0" \ No newline at end of file