mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-29 20:23:01 +02:00
The previous fix, setting 'rm: false' to prevent the parallel builds from replacing each other, caused the latest tag to not be updated. Very confusing, not just to end-users, but also for devs. This patch changes the workflow to use a separate release step that runs in sequence, waiting for the build to finish, before it moves the latest tag. The trick to solving this is to use upload/download artifact. It is the recommended way of sharing files between independent jobs in a workflow. Notice the lack of 'name:' in both and 'path:' in the latter, it means "don't care" just upload and then download everything to the artifact/ directory. Making the job of the releaser action quite simple. Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
78 lines
2.3 KiB
YAML
78 lines
2.3 KiB
YAML
name: Bob the Builder
|
|
|
|
# Consider switching to 'on: workflow_dispatch' when activity increases.
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*'
|
|
pull_request:
|
|
branches:
|
|
- '*'
|
|
|
|
jobs:
|
|
build:
|
|
name: Build ${{ matrix.platform }}
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
platform: [aarch64, amd64]
|
|
fail-fast: false
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set Build Variables
|
|
id: vars
|
|
run: |
|
|
echo "dir=infix-${{ matrix.platform }}" >> $GITHUB_OUTPUT
|
|
echo "tgz=infix-${{ matrix.platform }}.tar.gz" >> $GITHUB_OUTPUT
|
|
- name: Restore Cache of dl/
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: dl/
|
|
key: dl-${{ matrix.platform }}-${{ hashFiles('.git/modules/buildroot/HEAD', 'configs/*', 'package/*/*.hash') }}
|
|
restore-keys: |
|
|
dl-${{ matrix.platform }}-
|
|
dl-
|
|
- name: Restore Cache of .ccache/
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: .buildroot-ccache/
|
|
key: ccache-${{ matrix.board }}-os-${{ hashFiles('.git/modules/buildroot/HEAD', 'package/*/*.hash') }}
|
|
restore-keys: |
|
|
ccache-${{ matrix.board }}-os-
|
|
ccache-${{ matrix.board }}-
|
|
ccache--os-
|
|
- name: Configure & Build
|
|
run: |
|
|
make ${{ matrix.platform }}_defconfig
|
|
make
|
|
- name: Prepare Artifact
|
|
run: |
|
|
cd output
|
|
mv images ${{ steps.vars.outputs.dir }}
|
|
tar cfz ${{ steps.vars.outputs.tgz }} ${{ steps.vars.outputs.dir }}
|
|
ls -l
|
|
ls -l ${{ steps.vars.outputs.dir }}
|
|
- uses: actions/upload-artifact@v3
|
|
with:
|
|
path: output/${{ steps.vars.outputs.tgz }}
|
|
release:
|
|
name: Upload Latest Build
|
|
needs: build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/download-artifact@v3
|
|
- uses: pyTooling/Actions/releaser@main
|
|
with:
|
|
tag: latest
|
|
rm: true
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
files: artifact/*
|
|
- name: Summary
|
|
run: |
|
|
cat <<EOF >> $GITHUB_STEP_SUMMARY
|
|
# Latest Build Complete! :rocket:
|
|
|
|
For the public download links of these build artifacts, please see:
|
|
<https://github.com/kernelkit/infix/releases/tag/latest>
|
|
EOF
|