-
Notifications
You must be signed in to change notification settings - Fork 0
72 lines (58 loc) · 1.63 KB
/
ci.yml
File metadata and controls
72 lines (58 loc) · 1.63 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name: CI
on:
pull_request:
branches: [main]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
env:
ZIG_VERSION: '0.15.2'
jobs:
test:
name: Build & Test
runs-on: macos-15
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: "16"
- uses: mlugg/setup-zig@v2
with:
version: ${{ env.ZIG_VERSION }}
- name: Get Ghostty submodule SHA
id: ghostty-sha
run: echo "sha=$(git -C vendor/ghostty rev-parse HEAD)" >> "$GITHUB_OUTPUT"
- name: Cache Ghostty framework
id: ghostty-cache
uses: actions/cache@v4
with:
path: Frameworks
key: ghostty-${{ runner.os }}-${{ runner.arch }}-${{ steps.ghostty-sha.outputs.sha }}
- name: Build Ghostty
if: steps.ghostty-cache.outputs.cache-hit != 'true'
run: |
unset ZIG_LOCAL_CACHE_DIR ZIG_GLOBAL_CACHE_DIR
make ghostty
- name: Generate build info
run: bash scripts/generate-build-info.sh
- name: Build
run: swift build
- name: Run tests
run: |
for pkg in Packages/*/; do
if [ -d "$pkg/Tests" ]; then
echo "==> Testing $(basename "$pkg")..."
swift test --package-path "$pkg"
fi
done
echo "==> Testing root package (CrowTests)..."
swift test
shellcheck:
name: Shell Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check scripts
run: shellcheck scripts/*.sh