mirror of
https://github.com/terrapkg/packages.git
synced 2026-05-31 09:01:55 +00:00
74 lines
2.5 KiB
YAML
74 lines
2.5 KiB
YAML
name: JSON Build
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
packages:
|
|
description: "Packages to Build"
|
|
required: true
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
pkg: ${{ fromJson(inputs.packages) }}
|
|
version: ["39"]
|
|
fail-fast: false
|
|
runs-on: ${{ matrix.pkg.arch == 'aarch64' && 'ARM64' || 'ubuntu-latest' }}
|
|
container:
|
|
image: ghcr.io/terrapkg/builder:f${{ matrix.version }}
|
|
options: --cap-add=SYS_ADMIN --privileged
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Set up git repository
|
|
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
|
|
|
|
- name: Cache buildroot
|
|
id: br-cache
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: /var/cache
|
|
key: ${{ runner.os }}-br-${{ matrix.version }}-${{ matrix.pkg.arch }}-${{ matrix.pkg.pkg }}
|
|
|
|
- name: Build with Andaman
|
|
run: anda build ${{ matrix.pkg.pkg }} --package rpm -c anda/terra/mock-configs/terra-${{ matrix.version }}-${{ matrix.pkg.arch }}.cfg
|
|
|
|
- name: Generating artifact name
|
|
id: art
|
|
run: |
|
|
NAME=${{ matrix.pkg.pkg }}-${{ matrix.pkg.arch }}-${{ matrix.version }}
|
|
x=${NAME//\//@}
|
|
echo "name=$x" >> $GITHUB_OUTPUT
|
|
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: ${{ steps.art.outputs.name }}
|
|
compression-level: 0 # The RPMs are already compressed :p
|
|
path: |
|
|
anda-build/rpm/rpms/*
|
|
anda-build/rpm/srpm/*
|
|
|
|
- name: Upload packages to subatomic
|
|
run: |
|
|
subatomic-cli upload --prune \
|
|
--server https://subatomic.fyralabs.com \
|
|
--token ${{ secrets.SUBATOMIC_TOKEN }} \
|
|
terra${{ matrix.version }} anda-build/rpm/rpms/*
|
|
|
|
- name: Upload source packages to subatomic
|
|
if: github.event_name == 'push'
|
|
run: |
|
|
subatomic-cli upload --prune \
|
|
--server https://subatomic.fyralabs.com \
|
|
--token ${{ secrets.SUBATOMIC_TOKEN }} \
|
|
terra${{ matrix.version }}-source anda-build/rpm/srpm/*
|
|
|
|
- name: Notify Madoguchi (Success)
|
|
if: success()
|
|
run: ./.github/workflows/mg.sh true ${{matrix.pkg.pkg}} ${{matrix.version}} ${{matrix.pkg.arch}} ${{github.run_id}} ${{secrets.MADOGUCHI_JWT}}
|
|
- name: Notify Madoguchi (Failure)
|
|
if: cancelled() || failure()
|
|
run: ./.github/workflows/mg.sh false ${{matrix.pkg.pkg}} ${{matrix.version}} ${{matrix.pkg.arch}} ${{github.run_id}} ${{secrets.MADOGUCHI_JWT}}
|