Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/auto-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ permissions:
jobs:
select-builds:
name: select-builds
runs-on: ubuntu-24.04
runs-on: blacksmith-2vcpu-ubuntu-2404
outputs:
matrix: ${{ steps.matrix.outputs.matrix }}
steps:
Expand All @@ -37,43 +37,43 @@ jobs:
const builds = [
{
label: "windows-x64",
os: "windows-2025",
os: "blacksmith-2vcpu-windows-2025",
builder_args: "--win nsis portable --x64",
artifact_paths: "opennow-stable/dist-release/*-x64.exe\n",
},
{
label: "windows-arm64",
os: "windows-2025",
os: "blacksmith-2vcpu-windows-2025",
builder_args: "--win nsis portable --arm64",
artifact_paths: "opennow-stable/dist-release/*-arm64.exe\n",
},
{
label: "macos-x64",
os: "macos-15-intel",
os: "blacksmith-6vcpu-macos-15",
builder_args: "--mac dmg zip --x64",
artifact_paths:
"opennow-stable/dist-release/*.dmg\n" +
"opennow-stable/dist-release/*-x64.zip\n",
},
{
label: "macos-arm64",
os: "macos-15",
os: "blacksmith-6vcpu-macos-15",
builder_args: "--mac dmg zip --arm64",
artifact_paths:
"opennow-stable/dist-release/*.dmg\n" +
"opennow-stable/dist-release/*-arm64.zip\n",
},
{
label: "linux-x64",
os: "ubuntu-24.04",
os: "blacksmith-2vcpu-ubuntu-2404",
builder_args: "--linux AppImage deb --x64",
artifact_paths:
"opennow-stable/dist-release/*-x86_64.AppImage\n" +
"opennow-stable/dist-release/*-amd64.deb\n",
},
{
label: "linux-arm64",
os: "ubuntu-24.04-arm",
os: "blacksmith-2vcpu-ubuntu-2404-arm",
builder_args: "--linux AppImage deb --arm64",
artifact_paths:
"opennow-stable/dist-release/*-arm64.AppImage\n" +
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
# - https://gh.io/supported-runners-and-hardware-resources
# - https://gh.io/using-larger-runners (GitHub.com only)
# Consider using larger runners or machines with greater resources for possible analysis time improvements.
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
runs-on: ${{ (matrix.language == 'swift' && 'blacksmith-6vcpu-macos-latest') || 'blacksmith-2vcpu-ubuntu-2404' }}
permissions:
# required for all workflows
security-events: write
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ permissions:
jobs:
preflight:
name: preflight
runs-on: ubuntu-24.04
runs-on: blacksmith-2vcpu-ubuntu-2404
outputs:
version: ${{ steps.release.outputs.version }}
prerelease: ${{ steps.release.outputs.prerelease }}
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:

prepare-source:
name: prepare-source
runs-on: ubuntu-24.04
runs-on: blacksmith-2vcpu-ubuntu-2404
needs: preflight
permissions:
contents: write
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
matrix:
include:
- label: windows-x64
os: windows-2025
os: blacksmith-2vcpu-windows-2025
builder_args: "--win nsis portable --x64"
native_build: "true"
bundle_gstreamer: "1"
Expand All @@ -166,7 +166,7 @@ jobs:
opennow-stable/dist-release/latest*.yml
opennow-stable/dist-release/*.blockmap
- label: windows-arm64
os: windows-2025
os: blacksmith-2vcpu-windows-2025
builder_args: "--win nsis portable --arm64"
native_build: "false"
bundle_gstreamer: "0"
Expand All @@ -175,7 +175,7 @@ jobs:
artifact_paths: |
opennow-stable/dist-release/*-arm64.exe
- label: macos-x64
os: macos-15-intel
os: blacksmith-6vcpu-macos-15
builder_args: "--mac dmg zip --x64"
native_build: "true"
bundle_gstreamer: "1"
Expand All @@ -185,7 +185,7 @@ jobs:
opennow-stable/dist-release/*.dmg
opennow-stable/dist-release/*-x64.zip
- label: macos-arm64
os: macos-15
os: blacksmith-6vcpu-macos-15
builder_args: "--mac dmg zip --arm64"
native_build: "true"
bundle_gstreamer: "1"
Expand All @@ -195,7 +195,7 @@ jobs:
opennow-stable/dist-release/*.dmg
opennow-stable/dist-release/*-arm64.zip
- label: linux-x64
os: ubuntu-24.04
os: blacksmith-2vcpu-ubuntu-2404
builder_args: "--linux AppImage deb --x64"
native_build: "true"
bundle_gstreamer: "0"
Expand All @@ -206,7 +206,7 @@ jobs:
opennow-stable/dist-release/*-amd64.deb
opennow-stable/dist-release/latest-linux.yml
- label: linux-arm64
os: ubuntu-24.04-arm
os: blacksmith-2vcpu-ubuntu-2404-arm
builder_args: "--linux AppImage deb --arm64"
native_build: "true"
bundle_gstreamer: "0"
Expand Down Expand Up @@ -543,7 +543,7 @@ jobs:

release:
name: publish-release
runs-on: ubuntu-24.04
runs-on: blacksmith-2vcpu-ubuntu-2404
needs:
- preflight
- prepare-source
Expand Down Expand Up @@ -571,7 +571,7 @@ jobs:

finalize:
name: finalize-version-bump
runs-on: ubuntu-24.04
runs-on: blacksmith-2vcpu-ubuntu-2404
needs:
- preflight
- release
Expand Down
Loading