Files
packages/.github/workflows/bootstrap.yml
T
Willow 472dd9ecc1 Switch EL10 mock configs to non-dev (#4866)
* Update CI to use non-dev mock configs

* chore(terra-mock-configs): Update to stable

Signed-off-by: Gilver <rockgrub@disroot.org>

* fix(terra-mock-configs): Also update files list

Signed-off-by: Gilver <rockgrub@disroot.org>

* fix: Revert actually

Signed-off-by: Gilver <rockgrub@disroot.org>

* fix: Comment typo

Signed-off-by: Gilver <rockgrub@disroot.org>

---------

Signed-off-by: Gilver <rockgrub@disroot.org>
Co-authored-by: Gilver <rockgrub@disroot.org>
2025-05-29 18:19:48 +08:00

73 lines
2.7 KiB
YAML

name: Bootstrap Andaman and Subatomic
on:
workflow_dispatch:
jobs:
bootstrap:
strategy:
matrix:
version: ["10"]
arch: ["x86_64", "aarch64"]
fail-fast: true
runs-on: ${{ matrix.arch == 'aarch64' && 'ubuntu-22.04-arm' || 'ubuntu-22.04' }}
container:
image: quay.io/almalinuxorg/almalinux:${{ matrix.version }}-kitten
options: --cap-add=SYS_ADMIN --privileged
steps:
- name: Install repositories
run: |
dnf install -y 'dnf-command(config-manager)'
dnf config-manager --set-enabled crb
dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-${{ matrix.version }}.noarch.rpm
dnf install -y mock wget git-core openssl-devel cargo podman fuse-overlayfs rpm-build mock gzip
- uses: actions/checkout@v4
with:
ref: el${{ matrix.version }}
fetch-depth: 1
- name: Install dependencies
run: dnf builddep -y anda/{terra/{mock-configs,srpm-macros},tools/buildsys/subatomic}/*.spec
- name: Install Anda
run: cargo install anda
- name: Build terra-mock-configs
run: |
echo "PATH=$PATH:/github/home/.cargo/bin" >> $GITHUB_ENV
export PATH=$PATH:/github/home/.cargo/bin
git config --global --add safe.directory "$GITHUB_WORKSPACE"
anda build anda/terra/mock-configs/pkg --rpm-builder=rpmbuild
- name: Build anda-srpm-macros
run: anda build anda/terra/srpm-macros/pkg --rpm-builder=rpmbuild
- name: Build terra-release
run: anda build anda/terra/release/pkg --rpm-builder=rpmbuild
- name: Build Subatomic
run: anda build -c terra-el${{ matrix.version }}-${{ matrix.arch }}.cfg anda/tools/buildsys/subatomic/pkg --rpm-builder=rpmbuild
- name: Install Subatomic and anda-srpm-macros
run: dnf install -y ./anda-build/rpm/rpms/{subatomic,anda-srpm-macros}-*.rpm
- name: Install Build Dependencies for Andaman
run: dnf builddep -y anda/tools/buildsys/anda/*.spec
- name: Build Andaman
run: anda build -c terra-el${{ matrix.version }}-${{ matrix.arch }} anda/tools/buildsys/anda/pkg --rpm-builder=rpmbuild
- name: Upload packages to subatomic
run: |
subatomic-cli upload --prune \
--server https://subatomic.fyralabs.com \
--token ${{ secrets.SUBATOMIC_TOKEN }} \
terrael${{ matrix.version }} anda-build/rpm/rpms/*
- name: Upload source packages to subatomic
run: |
subatomic-cli upload --prune \
--server https://subatomic.fyralabs.com \
--token ${{ secrets.SUBATOMIC_TOKEN }} \
terrael${{ matrix.version }}-source anda-build/rpm/srpm/*