Skip to content

Commit 97825f1

Browse files
authored
changed from ubuntu to macos (#9)
1 parent 4ed60af commit 97825f1

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

.github/workflows/publish-mavencentral.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,25 @@ on:
66

77
jobs:
88
publish:
9-
runs-on: ubuntu-latest
9+
runs-on: macos-14
1010
permissions:
1111
contents: read
1212
packages: write
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v4
1616

17+
- name: Select Xcode
18+
run: |
19+
sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
20+
xcodebuild -version
21+
22+
- name: Install tools
23+
run: |
24+
brew update
25+
brew install cmake # if your native build expects it
26+
cmake --version
27+
1728
- name: Set up JDK
1829
uses: actions/setup-java@v4
1930
with:
@@ -27,7 +38,6 @@ jobs:
2738
- name: Compute version from tag
2839
id: v
2940
run: |
30-
# e.g., tag "v0.6.1" -> "0.6.1"
3141
RAW_REF="${GITHUB_REF_NAME}"
3242
VERSION="${RAW_REF#v}"
3343
echo "version=$VERSION" >> $GITHUB_OUTPUT

llama.cpp

Submodule llama.cpp updated 165 files

0 commit comments

Comments
 (0)