mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-28 22:38:26 +00:00
c5cf98ae36
This also renames some workflows.
152 lines
5.2 KiB
YAML
152 lines
5.2 KiB
YAML
# for each folder in anda/
|
|
# generate a new workflow for each folder in anda/
|
|
name: Automatically build packages
|
|
on:
|
|
push:
|
|
paths:
|
|
- anda/**
|
|
branches:
|
|
- f38
|
|
pull_request:
|
|
branches:
|
|
- f38
|
|
merge_group:
|
|
branches:
|
|
- f38
|
|
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:f38
|
|
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@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Generate build matrix
|
|
id: generate_build_matrix
|
|
run: anda ci >> $GITHUB_OUTPUT
|
|
build:
|
|
needs: manifest
|
|
strategy:
|
|
matrix:
|
|
pkg: ${{ fromJson(needs.manifest.outputs.build_matrix) }}
|
|
version: ["38"]
|
|
fail-fast: false
|
|
runs-on: ${{ matrix.pkg.arch == 'aarch64' && 'ARM64' || 'ubuntu-latest' }}
|
|
container:
|
|
image: ghcr.io/terrapkg/builder:f38
|
|
options: --cap-add=SYS_ADMIN --privileged
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Set up git repository
|
|
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
|
|
|
|
- name: Build with Anda
|
|
run: anda build ${{ matrix.pkg.pkg }} --package rpm -c terra-${{ matrix.version }}-${{ matrix.pkg.arch }}
|
|
|
|
- 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@v3
|
|
with:
|
|
name: ${{ steps.art.outputs.name }}
|
|
path: anda-build/rpm/rpms/*
|
|
|
|
- name: Upload 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 }} anda-build/rpm/rpms/*
|
|
|
|
- name: Notify Madoguchi (Success)
|
|
if: success() && github.event_name == 'push'
|
|
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() ) && github.event_name == 'push'
|
|
run: ./.github/workflows/mg.sh false ${{matrix.pkg.pkg}} ${{matrix.version}} ${{matrix.pkg.arch}} ${{github.run_id}} ${{secrets.MADOGUCHI_JWT}}
|
|
|
|
- name: Lint RPMs and SRPMs
|
|
id: lint
|
|
if: success()
|
|
run: |
|
|
rpmlint anda-build/ > rpmlint.txt || true
|
|
if [[ $? -ne 0 ]]; then
|
|
EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)
|
|
echo "lint_out<<$EOF" >> $GITHUB_ENV
|
|
cat rpmlint.txt >> $GITHUB_ENV
|
|
echo $EOF >> $GITHUB_ENV
|
|
fi
|
|
|
|
- name: Try to install package
|
|
id: dnf
|
|
if: success()
|
|
run: |
|
|
x=""
|
|
for f in anda-build/rpm/rpms/*.rpm; do
|
|
dnf in --downloadonly $f > "$f.dnfout.txt"
|
|
if [[ $? -ne 0 ]]; then
|
|
x="$x### $f\n```\n$(cat $f.dnfout.txt)```\n"
|
|
fi
|
|
done
|
|
EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)
|
|
echo "dnf_out<<$EOF\n$x\n$EOF" >> $GITHUB_ENV
|
|
|
|
- name: Comment RPMLint/DNF output (PR)
|
|
if: success() && github.event_name == 'pull_request'
|
|
uses: actions/github-script@v6
|
|
with:
|
|
script: |
|
|
let out = "";
|
|
if ("${{ env.lint_out }}".trim() != "") {
|
|
out += "## 🔨 Lint: [${{matrix.pkg.pkg}} (${{matrix.pkg.arch}})](https://github.com/terrapkg/packages/actions/runs/${{github.run_id}})\n";
|
|
out += "```\n${{ env.lint_out }}```\n";
|
|
}
|
|
if ("${{ env.dnf_out }}".trim() != "") {
|
|
out += "## ❌ DNF: [${{matrix.pkg.pkg}} (${{matrix.pkg.arch}})](https://github.com/terrapkg/packages/actions/runs/${{github.run_id}})\n${{ env.dnf_out }}\n";
|
|
}
|
|
if (out != "") {
|
|
github.rest.issues.createComment({
|
|
issue_number: context.issue.number,
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
body: out,
|
|
});
|
|
}
|
|
|
|
- name: Create commit comment
|
|
if: success() && github.event_name != 'pull_request'
|
|
uses: peter-evans/commit-comment@v1
|
|
with:
|
|
body: |
|
|
<sub>[run_id: ${{github.run_id}}](https://github.com/terrapkg/packages/actions/runs/${{github.run_id}})</sub>
|
|
# Built RPM: ${{matrix.pkg.pkg}} (${{matrix.pkg.arch}}.fc${{matrix.version}})
|
|
## Lint
|
|
If you see anything below, RPMLint returned with a non-zero exit code.
|
|
|
|
${{ env.lint_out }}
|
|
|
|
## DNF
|
|
Output of `dnf in --downloadonly ...`.
|
|
If you see anything below, DNF returned with a non-zero exit code.
|
|
|
|
${{ env.dnf_out }}
|