File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,6 +8,6 @@ CMAKE_GENERATOR="Ninja"
88MACOSX_DEPLOYMENT_TARGET = " $( sw_vers -productVersion 2> /dev/null || echo " 15.4" ) "
99
1010CMAKE_POLICY_VERSION_MINIMUM = " 4.1"
11- MACOSX_DEPLOYMENT_TARGET = " ${ MACOSX_DEPLOYMENT_TARGET:-26.0 } "
11+ MACOSX_DEPLOYMENT_TARGET = " ${ MACOSX_DEPLOYMENT_TARGET:-26.1 } "
1212CFLAGS = " -mcpu=native"
1313CXXFLAGS = " ${ CFLAGS } "
Original file line number Diff line number Diff line change 2626
2727 - name : Select Xcode
2828 run : |
29- sudo xcode-select -s /Applications/Xcode_26.0 .app
29+ sudo xcode-select -s /Applications/Xcode_26.1 .app
3030 xcodebuild -version
3131
3232 - name : Create Stow Directory
3838 - name : Install Dependencies
3939 run : |
4040 brew update -q
41- brew uninstall -q cmake
4241 xargs brew install -q --formula < homebrew/build-deps.txt
4342
4443 - name : Fetch Sources
@@ -47,11 +46,11 @@ jobs:
4746 - name : Build & Install
4847 run : ./build-all --bundle
4948 env :
50- MACOSX_DEPLOYMENT_TARGET : 26.0
49+ MACOSX_DEPLOYMENT_TARGET : 26.1
5150
5251 - name : Upload Artifact
5352 id : upload
54- uses : actions/upload-artifact@v4
53+ uses : actions/upload-artifact@v5
5554 with :
5655 name : mpv-macos-26-arm64
5756 path : mpv.tar.gz
Original file line number Diff line number Diff line change 88jobs :
99 shellcheck :
1010 runs-on : ubuntu-latest
11+ permissions :
12+ security-events : write
13+ contents : read
1114 steps :
1215 - name : Checkout
1316 uses : actions/checkout@v5
1417
18+ - name : Create requirements.txt
19+ if : hashFiles('**/requirements.txt', '**/pyproject.toml') == ''
20+ run : touch ./requirements.txt
21+
1522 - name : Check
16- run : shellcheck .env build-* fetch
23+ uses : reactive-firewall/shellcheck-scan@v1
24+ with :
25+ match : .env build-* fetch
26+ publish-artifacts : ${{ github.ref_name == github.event.repository.default_branch }}
1727
1828 yamllint :
1929 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -3,5 +3,7 @@ extends: default
33
44rules :
55 truthy : disable
6+ line-length :
7+ max : 100
68 comments :
79 min-spaces-from-content : 1
You can’t perform that action at this time.
0 commit comments