From 6e61d1cf5252d559b26eec0aee4afeecf69e7da4 Mon Sep 17 00:00:00 2001 From: Chengyu HAN Date: Mon, 8 Dec 2025 23:02:17 +0800 Subject: [PATCH 1/3] ci: build with `macos-15-intel` --- .github/workflows/CI.yml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 6df6c66..8b79938 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -15,7 +15,7 @@ concurrency: jobs: test: - name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} + name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ github.event_name }} runs-on: ${{ matrix.os }} permissions: # needed to allow julia-actions/cache to proactively delete old caches that it has created actions: write @@ -24,24 +24,20 @@ jobs: fail-fast: false matrix: version: - - '1.6' + - 'lts' - '1' os: - ubuntu-latest - - macOS-13 + - macOS-latest # Apple silicon - windows-latest - arch: - - x64 include: - - os: macOS-latest - arch: aarch64 - version: 1 + - os: macos-15-intel # Intel + version: 'lts' steps: - uses: actions/checkout@v6 - uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.version }} - arch: ${{ matrix.arch }} - uses: julia-actions/cache@v2 - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 From 9a4c2e90a6a54049121dc72caeb0a27018023fd3 Mon Sep 17 00:00:00 2001 From: Chengyu HAN Date: Mon, 8 Dec 2025 23:04:31 +0800 Subject: [PATCH 2/3] ci: remove github.event_name --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 8b79938..34b6ef3 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -15,7 +15,7 @@ concurrency: jobs: test: - name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ github.event_name }} + name: Julia ${{ matrix.version }} - ${{ matrix.os }} runs-on: ${{ matrix.os }} permissions: # needed to allow julia-actions/cache to proactively delete old caches that it has created actions: write From b6461f2f67d72c666cea0d3923666620ee596d73 Mon Sep 17 00:00:00 2001 From: Chengyu HAN Date: Mon, 8 Dec 2025 23:06:51 +0800 Subject: [PATCH 3/3] ci: allow workflow_dispatch --- .github/workflows/CI.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 34b6ef3..a4a3646 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -6,6 +6,7 @@ on: branches: - master tags: '*' + workflow_dispatch: concurrency: # Skip intermediate builds: always.