From 5a0c02a72ab26968fa57d92b71e207ed40c09cfe Mon Sep 17 00:00:00 2001 From: David Schuppa Date: Tue, 9 Apr 2024 10:09:30 +0200 Subject: [PATCH] chore(pipeline): modified pipeline to use new test command SUITEDEV-35508 Co-authored-by: LasOri <24588073+LasOri@users.noreply.github.com> --- .github/workflows/on_commit_swift_workflow.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/on_commit_swift_workflow.yml b/.github/workflows/on_commit_swift_workflow.yml index e5741bd5..94312a58 100644 --- a/.github/workflows/on_commit_swift_workflow.yml +++ b/.github/workflows/on_commit_swift_workflow.yml @@ -1,4 +1,4 @@ -name: Last commit build +name: Last commit build - Swift on: push: branches: [ swift ] @@ -11,12 +11,12 @@ jobs: runs-on: macos-13 steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Remove old directories run: rm -rf ~/tmp | rm -rf ~/Library/MobileDevice shell: bash - name: Build And Test - run: cd HostApp && xcodebuild test -scheme HostApp -destination "platform=iOS Simulator,name=iPhone 15,OS=17.2" + run: xcodebuild -scheme EmarsysSDK test -destination "platform=iOS Simulator,name=iPhone 15,OS=latest" shell: bash - if: ${{ failure() }} name: Slack Notification On Error @@ -39,4 +39,4 @@ jobs: job_status: 'success' message: 'Last push build successful! :man-gesturing-ok: :bananadance:' user_icon: 'https://www.apple.com/ac/structured-data/images/knowledge_graph_logo.png' - user_name: Emarsys SDK - iOS \ No newline at end of file + user_name: Emarsys SDK - iOS