mirror of
https://github.com/jimeh/emacs-builds.git
synced 2026-02-19 02:46:44 +00:00
chore(workflows): update to macos-15 runners
Upgrade from `macos-13` and `macos-14` runners to `macos-15` and `macos-15-intel` runners. Previously we were still using `macos-13`, as the default free tier were Intel-based. From macos-14 and later the default free tier is ARM-based.
This commit is contained in:
12
.github/workflows/_build.yml
vendored
12
.github/workflows/_build.yml
vendored
@@ -63,8 +63,8 @@ jobs:
|
|||||||
needs: [prepare]
|
needs: [prepare]
|
||||||
with:
|
with:
|
||||||
builder_ref: ${{ needs.prepare.outputs.builder_sha }}
|
builder_ref: ${{ needs.prepare.outputs.builder_sha }}
|
||||||
os: "macos-13"
|
os: "macos-15-intel"
|
||||||
build_os: "macos-13" # Only macos-13 and earlier are x86_64.
|
build_os: "macos-15-intel"
|
||||||
artifact_prefix: "x86_64-"
|
artifact_prefix: "x86_64-"
|
||||||
git_ref: ${{ inputs.git_ref }}
|
git_ref: ${{ inputs.git_ref }}
|
||||||
git_sha: ${{ inputs.git_sha }}
|
git_sha: ${{ inputs.git_sha }}
|
||||||
@@ -88,7 +88,7 @@ jobs:
|
|||||||
needs.build_arm64.result != 'failure'
|
needs.build_arm64.result != 'failure'
|
||||||
with:
|
with:
|
||||||
builder_ref: ${{ needs.prepare.outputs.builder_sha }}
|
builder_ref: ${{ needs.prepare.outputs.builder_sha }}
|
||||||
os: "macos-13" # Only macos-13 and earlier are x86_64.
|
os: "macos-15-intel"
|
||||||
plan_artifact: x86_64-build-plan
|
plan_artifact: x86_64-build-plan
|
||||||
dmg_artifact: x86_64-dmg
|
dmg_artifact: x86_64-dmg
|
||||||
|
|
||||||
@@ -103,8 +103,8 @@ jobs:
|
|||||||
needs: [prepare]
|
needs: [prepare]
|
||||||
with:
|
with:
|
||||||
builder_ref: ${{ needs.prepare.outputs.builder_sha }}
|
builder_ref: ${{ needs.prepare.outputs.builder_sha }}
|
||||||
os: "macos-14"
|
os: "macos-15"
|
||||||
build_os: "macos-14" # Only macos-14 and later are ARM64.
|
build_os: "macos-15"
|
||||||
artifact_prefix: "arm64-"
|
artifact_prefix: "arm64-"
|
||||||
git_ref: ${{ inputs.git_ref }}
|
git_ref: ${{ inputs.git_ref }}
|
||||||
git_sha: ${{ inputs.git_sha }}
|
git_sha: ${{ inputs.git_sha }}
|
||||||
@@ -128,7 +128,7 @@ jobs:
|
|||||||
needs.build_x86_64.result != 'failure'
|
needs.build_x86_64.result != 'failure'
|
||||||
with:
|
with:
|
||||||
builder_ref: ${{ needs.prepare.outputs.builder_sha }}
|
builder_ref: ${{ needs.prepare.outputs.builder_sha }}
|
||||||
os: "macos-14" # Only macos-14 and later are ARM64.
|
os: "macos-15"
|
||||||
plan_artifact: arm64-build-plan
|
plan_artifact: arm64-build-plan
|
||||||
dmg_artifact: arm64-dmg
|
dmg_artifact: arm64-dmg
|
||||||
|
|
||||||
|
|||||||
4
.github/workflows/_build_emacs.yml
vendored
4
.github/workflows/_build_emacs.yml
vendored
@@ -12,12 +12,12 @@ on:
|
|||||||
description: GitHub Actions runner OS
|
description: GitHub Actions runner OS
|
||||||
type: string
|
type: string
|
||||||
required: false
|
required: false
|
||||||
default: "macos-13"
|
default: "macos-15"
|
||||||
build_os:
|
build_os:
|
||||||
description: Target OS to build for
|
description: Target OS to build for
|
||||||
type: string
|
type: string
|
||||||
required: false
|
required: false
|
||||||
default: "macos-13"
|
default: "macos-15"
|
||||||
artifact_prefix:
|
artifact_prefix:
|
||||||
description: Artifact prefix for build_os
|
description: Artifact prefix for build_os
|
||||||
type: string
|
type: string
|
||||||
|
|||||||
6
.github/workflows/_prepare.yml
vendored
6
.github/workflows/_prepare.yml
vendored
@@ -18,7 +18,7 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
builder-sha:
|
builder-sha:
|
||||||
runs-on: "macos-13"
|
runs-on: "macos-15"
|
||||||
outputs:
|
outputs:
|
||||||
ref: ${{ steps.ref.outputs.ref }}
|
ref: ${{ steps.ref.outputs.ref }}
|
||||||
sha: ${{ steps.sha.outputs.sha }}
|
sha: ${{ steps.sha.outputs.sha }}
|
||||||
@@ -54,8 +54,8 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os:
|
os:
|
||||||
- macos-13 # Only macos-13 and earlier are x86_64.
|
- macos-15
|
||||||
- macos-14 # Only macos-14 and later are ARM64.
|
- macos-15-intel
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- name: Cache emacs-builder (${{ runner.arch }})
|
- name: Cache emacs-builder (${{ runner.arch }})
|
||||||
|
|||||||
2
.github/workflows/_release.yml
vendored
2
.github/workflows/_release.yml
vendored
@@ -15,7 +15,7 @@ on:
|
|||||||
description: GitHub Actions runner OS
|
description: GitHub Actions runner OS
|
||||||
type: string
|
type: string
|
||||||
required: false
|
required: false
|
||||||
default: "macos-13"
|
default: "macos-15"
|
||||||
plan_artifact:
|
plan_artifact:
|
||||||
description: Name of artifact containing a emacs-builder plan yaml file
|
description: Name of artifact containing a emacs-builder plan yaml file
|
||||||
type: string
|
type: string
|
||||||
|
|||||||
Reference in New Issue
Block a user