-
Notifications
You must be signed in to change notification settings - Fork 6
34 lines (31 loc) · 1.11 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: ci
on:
push:
branches:
- master
pull_request:
branches:
- '*'
jobs:
testing_macos:
runs-on: macos-11
steps:
- uses: actions/checkout@v1
- name: "Xcode13 iOS"
run: xcodebuild clean test -project xxHash.xcodeproj -scheme xxHash-iOS -sdk iphonesimulator -destination "platform=iOS Simulator,OS=15.0,name=iPhone 8" -configuration Debug
env:
DEVELOPER_DIR: /Applications/Xcode_13.0.app/Contents/Developer
- name: "Xcode13 macOS"
run: xcodebuild clean test -project xxHash.xcodeproj -scheme xxHash-macOS -destination "platform=OS X" -configuration Debug
env:
DEVELOPER_DIR: /Applications/Xcode_13.0.app/Contents/Developer
- name: "Xcode13 tvOS"
run: xcodebuild clean test -project xxHash.xcodeproj -scheme xxHash-tvOS -sdk appletvsimulator -destination "platform=tvOS Simulator,OS=15.0,name=Apple TV" -configuration Debug
env:
DEVELOPER_DIR: /Applications/Xcode_13.0.app/Contents/Developer
testing_linux:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- name: "Linux"
run: swift test