Skip to content

v23.4.0

v23.4.0 #44

Workflow file for this run

name: build
on:
push:
tags:
- "*"
workflow_dispatch:
jobs:
x86_64-linux:
name: x86_64-linux
runs-on:
- X64
- Linux
- podman
strategy:
matrix:
include:
- arch: x86_64
steps:
- name: checkout
uses: actions/checkout@v4
- name: build-linux-node
uses: ./.github/actions/linux
aarch64-linux:
name: aarch64-linux
runs-on:
- ARM64
- Linux
- podman
strategy:
matrix:
include:
- arch: aarch64
steps:
- name: checkout
uses: actions/checkout@v4
- name: build-linux-node
uses: ./.github/actions/linux
aarch64-darwin:
name: aarch64-darwin
runs-on:
- ARM64
- macOS
strategy:
matrix:
include:
- arch: aarch64
steps:
- name: checkout
uses: actions/checkout@v4
- name: build-darwin-node
uses: ./.github/actions/darwin
x86_64-darwin:
needs: aarch64-darwin
name: x86_64-darwin
runs-on:
- X64
- macOS
strategy:
matrix:
include:
- arch: x86_64
steps:
- name: checkout
uses: actions/checkout@v4
- name: build-darwin-node
uses: ./.github/actions/darwin