-
Notifications
You must be signed in to change notification settings - Fork 1.3k
43 lines (41 loc) · 1.52 KB
/
ci.yml
File metadata and controls
43 lines (41 loc) · 1.52 KB
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
35
36
37
38
39
40
41
42
43
name: CI
on: [push, pull_request]
jobs:
buildsh:
env:
DEVELOPER_DIR: /Applications/Xcode_26.0.1.app/Contents/Developer
strategy:
matrix:
mode: [tests, framework, life-without-cocoapods, carthage, spm, spm-texture-basic, spm-texture-iglistkit, spm-app-iglistkit, examples-pt1, examples-pt2, examples-pt3, examples-pt4]
include:
- mode: tests
name: Build and run tests
- mode: framework
name: Build Texture as a dynamic framework
- mode: life-without-cocoapods
name: Build Texture as a static library
- mode: carthage
name: Verify that Carthage works
- mode: spm
name: Verify that Swift Package Manager works
- mode: spm-texture-basic
name: Test SPM basic integration (AsyncDisplayKit)
- mode: spm-texture-iglistkit
name: Test SPM with IGListKit extensions
- mode: spm-app-iglistkit
name: Test SPM iOS app with IGListKit
- mode: examples-pt1
name: Build examples (examples-pt1)
- mode: examples-pt2
name: Build examples (examples-pt2)
- mode: examples-pt3
name: Build examples (examples-pt3)
- mode: examples-pt4
name: Build examples (examples-pt4)
name: ${{ matrix.name }}
runs-on: macos-15
steps:
- name: Checkout the Git repository
uses: actions/checkout@v4
- name: Run build script
run: ./build.sh ${{ matrix.mode }}