mirror of
https://github.com/antos-rde/antos.git
synced 2024-11-08 14:38:24 +01:00
36 lines
972 B
YAML
36 lines
972 B
YAML
|
name: AntOS pipeline
|
||
|
run-name: Building AntOS binaries
|
||
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
build-AMD64:
|
||
|
runs-on: ci-tools
|
||
|
steps:
|
||
|
- name: Check out repository code
|
||
|
uses: actions/checkout@v4
|
||
|
- name: Build AntOS for AMD64 platform
|
||
|
uses: ./.gitea/workflow/build-bin.yml
|
||
|
with:
|
||
|
platform: amd64
|
||
|
- run: echo "Build is ${{ job.status }}."
|
||
|
build-ARM64:
|
||
|
runs-on: ci-tools
|
||
|
steps:
|
||
|
- name: Check out repository code
|
||
|
uses: actions/checkout@v4
|
||
|
- name: Build AntOS for ARM64 platform
|
||
|
uses: ./.gitea/workflow/build-bin.yml
|
||
|
with:
|
||
|
platform: arm64
|
||
|
- run: echo "Build is ${{ job.status }}."
|
||
|
build-ARM:
|
||
|
runs-on: ci-tools
|
||
|
steps:
|
||
|
- name: Check out repository code
|
||
|
uses: actions/checkout@v4
|
||
|
- name: Build AntOS for arm platform
|
||
|
uses: ./.gitea/workflow/build-bin.yml
|
||
|
with:
|
||
|
platform: arm64
|
||
|
- run: echo "Build is ${{ job.status }}."
|