mirror of
https://github.com/antos-rde/antos.git
synced 2024-11-08 14:38:24 +01:00
24 lines
628 B
YAML
24 lines
628 B
YAML
name: Building AntOS binaries
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
platform:
|
|
required: true
|
|
type: string
|
|
|
|
jobs:
|
|
triage:
|
|
runs-on: ci-tools
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4
|
|
- name: Building binaries for platform - ${{ inputs.platform }}
|
|
run: |
|
|
mkdir build
|
|
DESTDIR=$(realpath build) \
|
|
ARCH=${{ inputs.platform }} \
|
|
RUSTUP_HOME=/opt/rust/rustup \
|
|
CARGO_HOME=/opt/rust/cargo \
|
|
make all deb appimg
|
|
- run: echo "Build is ${{ job.status }}."
|