Skip to content

๐Ÿ”€ :: [#270] ๋ฉ”์ธ ์ƒˆ๋กœ๊ณ ์นจ ์ถ”๊ฐ€, ์•ฑ ์‹คํ–‰ ์–ด๋“œ๋ฏผ ๊ณ ์ • ์˜ค๋ฅ˜ #2

๐Ÿ”€ :: [#270] ๋ฉ”์ธ ์ƒˆ๋กœ๊ณ ์นจ ์ถ”๊ฐ€, ์•ฑ ์‹คํ–‰ ์–ด๋“œ๋ฏผ ๊ณ ์ • ์˜ค๋ฅ˜

๐Ÿ”€ :: [#270] ๋ฉ”์ธ ์ƒˆ๋กœ๊ณ ์นจ ์ถ”๊ฐ€, ์•ฑ ์‹คํ–‰ ์–ด๋“œ๋ฏผ ๊ณ ์ • ์˜ค๋ฅ˜ #2

Workflow file for this run

name: GOMS CI
on:
pull_request:
branches: [ "*" ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_14.3.app
- name: Install Dependencies
run: |
pod install --repo-update
- name: Build
run: |
xcodebuild clean build -workspace GOMS-iOS-V2.xcworkspace -scheme "GOMS-iOS-V2" -sdk iphonesimulator -destination "platform=iOS Simulator,name=iPhone 14,OS=16.4" ONLY_ACTIVE_ARCH=NO CODE_SIGNING_REQUIRED=NO
# - name: Run tests
# run: |
# xcodebuild test -workspace GOMS-iOS-V2.xcworkspace -scheme "GOMS-iOS-V2" -sdk iphonesimulator -destination "platform=iOS Simulator,name=iPhone 14,OS=16.4" ONLY_ACTIVE_ARCH=NO CODE_SIGNING_REQUIRED=NO
- name: Success Discord Notification
uses: sarisia/actions-status-discord@v1
if: ${{ success() }}
with:
title: CI ์„ฑ๊ณต!
webhook: ${{ secrets.DISCORD_WEBHOOK }}
status: ${{ job.status }}
image: ${{ secrets.CI_SUCCESS_IMAGE }}
description: CI๋ฅผ ์„ฑ๊ณตํ–ˆ์Šต๋‹ˆ๋‹ค.
color: 00FF00
username: CI Bot
url: https://github.com/team-haribo/GOMS-iOS-V2
- name: Failed Discord Notification
uses: sarisia/actions-status-discord@v1
if: ${{ failure() }}
with:
title: CI ์‹คํŒจ!
webhook: ${{ secrets.DISCORD_WEBHOOK }}
status: ${{ job.status }}
image: ${{ secrets.CI_FAIL_IMAGE }}
description: CI๋ฅผ ์‹คํŒจํ–ˆ์Šต๋‹ˆ๋‹ค.
color: FF0000
username: CI Bot
url: https://github.com/team-haribo/GOMS-iOS-V2