switch to slick-greeter #543
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# for each folder in ultramarine/ | |
# generate a new workflow for each folder in ultramarine/ | |
name: Automatically build packages | |
on: | |
push: | |
paths: | |
- ultramarine/** | |
branches: | |
- um41 | |
pull_request: | |
branches: | |
- um41 | |
workflow_dispatch: | |
workflow_call: | |
jobs: | |
manifest: | |
runs-on: ubuntu-latest | |
outputs: | |
build_matrix: ${{ steps.generate_build_matrix.outputs.build_matrix }} | |
container: | |
image: ghcr.io/terrapkg/builder:f41 | |
options: --cap-add=SYS_ADMIN --privileged | |
steps: | |
- name: Set workspace as safe | |
run: git config --global --add safe.directory "$GITHUB_WORKSPACE" | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Generate build matrix | |
id: generate_build_matrix | |
run: anda ci >> $GITHUB_OUTPUT | |
build: | |
needs: manifest | |
strategy: | |
matrix: | |
version: ["41"] | |
pkg: ${{ fromJson(needs.manifest.outputs.build_matrix) }} | |
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 }} | |
- name: Include custom build template instead of package default | |
run: | | |
cp -v ultramarine/ultramarine-mock-configs/ultramarine.tpl /etc/mock/templates/ultramarine.tpl | |
- name: Build with Andaman | |
run: anda build ${{ matrix.pkg.pkg }} --package rpm -c ultramarine/ultramarine-mock-configs/ultramarine-${{ 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 }} | |
path: | | |
anda-build/rpm/rpms/* | |
anda-build/rpm/srpm/* | |
- name: Upload packages to subatomic | |
if: github.event_name == 'push' | |
run: | | |
subatomic-cli upload --prune \ | |
--server https://subatomic.fyralabs.com \ | |
--token ${{ secrets.SUBATOMIC_TOKEN }} \ | |
um${{ 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 }} \ | |
um${{ matrix.version }}-source anda-build/rpm/srpm/* |