1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-03-18 15:52:52 +00:00

Compare commits

...

4 Commits

3 changed files with 13 additions and 13 deletions

View File

@@ -1,6 +1,6 @@
name: Build name: Build
on: [push, pull_request] on: [push, pull_request, workflow_dispatch]
defaults: defaults:
run: run:
@@ -11,7 +11,7 @@ jobs:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
strategy: strategy:
matrix: matrix:
os: [macos-11, macos-12, ubuntu-22.04, ubuntu-20.04] os: [macos-12, macos-13, macos-14, macos-15, ubuntu-24.04, ubuntu-22.04, ubuntu-20.04]
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Install X11 dependencies on MacOS - name: Install X11 dependencies on MacOS
@@ -37,7 +37,7 @@ jobs:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
strategy: strategy:
matrix: matrix:
os: [macos-11, macos-12, ubuntu-22.04, ubuntu-20.04] os: [macos-12, macos-13, macos-14, macos-15, ubuntu-24.04, ubuntu-22.04, ubuntu-20.04]
env: env:
BUILD_TYPE: Release BUILD_TYPE: Release
steps: steps:

View File

@@ -29,7 +29,7 @@ jobs:
buildBuilder: buildBuilder:
runs-on: ubuntu-latest runs-on: ubuntu-24.04
steps: steps:
# Checkout maiko # Checkout maiko

View File

@@ -84,7 +84,7 @@ jobs:
# the result of a workflow_dispatch or a workflow_call # the result of a workflow_dispatch or a workflow_call
inputs: inputs:
runs-on: ubuntu-latest runs-on: ubuntu-24.04
outputs: outputs:
draft: ${{ steps.one.outputs.draft }} draft: ${{ steps.one.outputs.draft }}
force: ${{ steps.one.outputs.force }} force: ${{ steps.one.outputs.force }}
@@ -116,7 +116,7 @@ jobs:
sentry: sentry:
needs: inputs needs: inputs
runs-on: ubuntu-latest runs-on: ubuntu-24.04
outputs: outputs:
release_not_built: ${{ steps.check.outputs.release_not_built }} release_not_built: ${{ steps.check.outputs.release_not_built }}
@@ -152,7 +152,7 @@ jobs:
|| needs.inputs.outputs.force == 'true' || needs.inputs.outputs.force == 'true'
) )
runs-on: ubuntu-latest runs-on: ubuntu-24.04
steps: steps:
# Checkout the actions for this repo owner # Checkout the actions for this repo owner
@@ -185,14 +185,14 @@ jobs:
# Setup the Docker Machine Emulation environment. # Setup the Docker Machine Emulation environment.
- name: Set up QEMU - name: Set up QEMU
uses: docker/setup-qemu-action@v2 uses: docker/setup-qemu-action@v3
with: with:
platforms: linux/amd64,linux/arm64,linux/arm/v7 platforms: linux/amd64,linux/arm64,linux/arm/v7
# Setup the Docker Buildx funtion # Setup the Docker Buildx funtion
- name: Set up Docker Buildx - name: Set up Docker Buildx
id: buildx id: buildx
uses: docker/setup-buildx-action@v2 uses: docker/setup-buildx-action@v3
# Do the Docker Build using the Dockerfile in the repository we # Do the Docker Build using the Dockerfile in the repository we
# checked out. Save the results in a directory under /tmp to be used # checked out. Save the results in a directory under /tmp to be used
@@ -204,7 +204,7 @@ jobs:
# Dockerfile, NOT HERE IN THE WORKFLOW. # Dockerfile, NOT HERE IN THE WORKFLOW.
# #
- name: Build Docker Image and Save It Locally - name: Build Docker Image and Save It Locally
uses: docker/build-push-action@v4 uses: docker/build-push-action@v6
with: with:
builder: ${{ steps.buildx.outputs.name }} builder: ${{ steps.buildx.outputs.name }}
build-args: | build-args: |
@@ -266,7 +266,7 @@ jobs:
|| needs.inputs.outputs.force == 'true' || needs.inputs.outputs.force == 'true'
) )
runs-on: macos-latest runs-on: macos-12
steps: steps:
@@ -487,7 +487,7 @@ jobs:
|| needs.inputs.outputs.force == 'true' || needs.inputs.outputs.force == 'true'
) )
runs-on: ubuntu-latest runs-on: ubuntu-24.04
steps: steps:
@@ -554,7 +554,7 @@ jobs:
complete: complete:
runs-on: ubuntu-latest runs-on: ubuntu-24.04
outputs: outputs:
build_successful: ${{ steps.output.outputs.build_successful }} build_successful: ${{ steps.output.outputs.build_successful }}