File tree Expand file tree Collapse file tree 2 files changed +15
-2
lines changed
Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -20,13 +20,16 @@ jobs:
2020 include :
2121 - xcode : " Xcode_16.0"
2222 runsOn : macos-15
23- - xcode : " Xcode_16.2 "
23+ - xcode : " Xcode_26.0 "
2424 runsOn : macos-15
2525 steps :
2626 - uses : actions/checkout@v4
27+
2728 - name : Select Xcode
2829 run : sudo xcode-select -s /Applications/${{ matrix.xcode }}.app
30+
2931 - name : Build Prefire
3032 run : make build
33+
3134 - name : Run PrefireExecutable Tests
3235 run : make test
Original file line number Diff line number Diff line change 11MAKEFLAGS += --silent
2+
23FOLDER =$(shell cd Binaries/PrefireBinary.artifactbundle/; ls -d * /|head -n 1)
34CUR_VERSION =$(shell echo $(FOLDER ) | cut -d "-" -f 2)
45
6+ .PHONY : build binary test update archive
7+
58build :
6- set -o pipefail && xcodebuild -scheme Prefire -destination ' generic/platform=iOS'
9+ set -o pipefail && xcodebuild \
10+ -scheme Prefire \
11+ -sdk iphonesimulator \
12+ -destination ' generic/platform=iOS Simulator' \
13+ -configuration Release \
14+ -skipMacroValidation \
15+ -skipPackagePluginValidation \
16+ build
717
818binary :
919 (cd PrefireExecutable; swift build -c release --arch arm64 --arch x86_64)
You can’t perform that action at this time.
0 commit comments