Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jihoonahn committed Nov 1, 2024
1 parent 036a23f commit ce9b317
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,5 @@ jobs:
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
- name: Skip macro validation
run: defaults write com.apple.dt.Xcode IDESkipMacroFingerprintValidation -bool YES
- name: Build Builder
run: swift build
- name: Run tests
run: |
swift test
swift test -c release
run: exec ./Scripts/test.sh
10 changes: 10 additions & 0 deletions Scripts/test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash

export LC_ALL=en_US.UTF-8

SCHEME="SFSymbolsMacro"

DESTINATION="platform=macOS"

set -o pipefail && xcodebuild clean build test -scheme $SCHEME \
-destination $DESTINATION | xcpretty

0 comments on commit ce9b317

Please sign in to comment.