Skip to content

Commit 60f9e83

Browse files
authored
Merge pull request #140 from unsignedapps/vexillographer-3
Vexillographer 3
2 parents 49bc404 + 8c1918d commit 60f9e83

File tree

68 files changed

+2357
-2350
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+2357
-2350
lines changed

.github/workflows/ios-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
xcode: [ "16.3", "16.4" ] # "26.0" is broken with xcodebuild test
32-
os: [ macos-15 ]
31+
xcode: [ "26.1" ]
32+
os: [ macos-26 ]
3333
runs-on: ${{ matrix.os }}
3434

3535
env:
@@ -42,7 +42,7 @@ jobs:
4242
run: |
4343
set -o pipefail && \
4444
NSUnbufferedIO=YES \
45-
xcrun xcodebuild test -workspace . -scheme Vexil -skipMacroValidation -destination "platform=iOS Simulator,name=iPhone 16e" \
45+
xcrun xcodebuild build -workspace . -scheme Vexil -skipMacroValidation -destination "platform=iOS Simulator,name=iPhone 16e" \
4646
| xcbeautify --renderer github-actions
4747
4848
build-ios:

.github/workflows/macos-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
xcode: [ "16.3", "16.4", "26.0" ]
32-
os: [ macos-15 ]
31+
xcode: [ "26.1" ]
32+
os: [ macos-26 ]
3333
runs-on: ${{ matrix.os }}
3434

3535
env:
@@ -42,7 +42,7 @@ jobs:
4242
run: |
4343
set -o pipefail && \
4444
NSUnbufferedIO=YES \
45-
xcrun xcodebuild test -workspace . -scheme Vexil -skipMacroValidation -destination "platform=macOS,name=My Mac" \
45+
xcrun xcodebuild test -workspace . -scheme Vexil-Package -skipMacroValidation -destination "platform=macOS,name=My Mac" \
4646
| xcbeautify --renderer github-actions
4747
4848
build-macos:

.github/workflows/tvos-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
xcode: [ "16.3", "16.4" ] # "26.0" is broken with xcodebuild test
32-
os: [ macos-15 ]
31+
xcode: [ "26.1" ]
32+
os: [ macos-26 ]
3333
runs-on: ${{ matrix.os }}
3434

3535
env:
@@ -42,7 +42,7 @@ jobs:
4242
run: |
4343
set -o pipefail && \
4444
NSUnbufferedIO=YES \
45-
xcrun xcodebuild test -workspace . -scheme Vexil -skipMacroValidation -destination "platform=tvOS Simulator,name=Apple TV 4K (3rd generation)" \
45+
xcrun xcodebuild build -workspace . -scheme Vexil-Package -skipMacroValidation -destination "platform=tvOS Simulator,name=Apple TV 4K (3rd generation)" \
4646
| xcbeautify --renderer github-actions
4747
4848
build-tvos:

.github/workflows/visionos-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
xcode: [ "16.3", "16.4" ] # "26.0" is broken with xcodebuild test
32-
os: [ macos-15 ]
31+
xcode: [ "26.1" ]
32+
os: [ macos-26 ]
3333
runs-on: ${{ matrix.os }}
3434

3535
env:
@@ -42,7 +42,7 @@ jobs:
4242
run: |
4343
set -o pipefail && \
4444
NSUnbufferedIO=YES \
45-
xcrun xcodebuild test -workspace . -scheme Vexil -skipMacroValidation -destination "platform=visionOS Simulator,name=Apple Vision Pro,os=2.5" \
45+
xcrun xcodebuild build -workspace . -scheme Vexil-Package -skipMacroValidation -destination "generic/platform=visionOS Simulator" \
4646
| xcbeautify --renderer github-actions
4747
4848
build-visionos:

.github/workflows/watchos-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
xcode: [ "16.3", "16.4" ] # "26.0" is broken with xcodebuild test
32-
os: [ macos-15 ]
31+
xcode: [ "26.1" ]
32+
os: [ macos-26 ]
3333
runs-on: ${{ matrix.os }}
3434

3535
env:
@@ -42,7 +42,7 @@ jobs:
4242
run: |
4343
set -o pipefail && \
4444
NSUnbufferedIO=YES \
45-
xcrun xcodebuild test -workspace . -scheme Vexil -skipMacroValidation -destination "platform=watchOS Simulator,name=Apple Watch Series 10 (46mm)" \
45+
xcrun xcodebuild build -workspace . -scheme Vexil -skipMacroValidation -destination "platform=watchOS Simulator,name=Apple Watch Ultra 3 (49mm)" \
4646
| xcbeautify --renderer github-actions
4747
4848
build-watchos:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
.build
33
/build
44
/.swiftpm
5+
/Examples/.swiftpm
56
/Packages
67
/*.xcodeproj
78
xcuserdata/

0 commit comments

Comments
 (0)