Skip to content

Commit 9eb9a2c

Browse files
authored
Merge pull request #27 from mach-kernel/051625/updates
Overhaul a few things
2 parents 13f2396 + 01eb537 commit 9eb9a2c

Some content is hidden

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

45 files changed

+2407
-2233
lines changed

.github/workflows/launchk-bins.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: launchk-bins.yml
2+
3+
permissions:
4+
contents: write
5+
6+
on:
7+
workflow_dispatch: {}
8+
9+
jobs:
10+
upload-bins:
11+
strategy:
12+
matrix:
13+
# https://docs.github.com/en/actions/using-github-hosted-runners/using-github-hosted-runners/about-github-hosted-runners#standard-github-hosted-runners-for-public-repositories
14+
include:
15+
- target: x86_64-apple-darwin
16+
os: macos-13
17+
- target: arm64-apple-darwin
18+
os: macos-14
19+
runs-on: ${{ matrix.os }}
20+
steps:
21+
- uses: actions/checkout@v4
22+
- uses: taiki-e/upload-rust-binary-action@v1
23+
with:
24+
# (required) Comma-separated list of binary names (non-extension portion of filename) to build and upload.
25+
# Note that glob pattern is not supported yet.
26+
bin: launchk
27+
target: ${{ matrix.target }}
28+
tar: unix
29+
# (required) GitHub token for uploading assets to GitHub Releases.
30+
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/rust.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,14 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
include:
18-
- runner: macos-12
19-
xcode_version: 14.0.1 # macOS SDK: 12.3
20-
- runner: macos-12
21-
xcode_version: 14.2 # macOS SDK: 13.1
18+
# macos-12 deprecated 2024-12-03
2219
- runner: macos-13
2320
xcode_version: 15.2 # macOS SDK: 14.2
2421
- runner: macos-14
2522
xcode_version: 15.3 # macOS SDK: 14.4
26-
# optionally opt into latest stable Xcode version in future
27-
# - runner: macos-14
28-
# xcode_version: latest-stable
23+
- runner: macos-15
24+
xcode_version: 16.3 # macOS SDK: 15.4
2925
runs-on: ${{ matrix.runner }}
30-
3126
steps:
3227
- uses: actions/checkout@v4
3328
- name: Setup Xcode version

0 commit comments

Comments
 (0)