fix(agent): do not wait for systemd service to start (#1263) #1093
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
name: Build ARM64 | |
concurrency: | |
group: "master-arm64-build" | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: [ubuntu-24.04-arm] | |
env: | |
ARCH: amd64 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
git fetch --prune --unshallow | |
mkdir build | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@master | |
with: | |
platforms: all | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@master | |
- name: Download meta 🔧 | |
uses: luet-lab/[email protected] | |
with: | |
FINAL_REPO: quay.io/kairos/packages-arm64 | |
REPOSITORY_TYPE: docker | |
downloadAllMeta: true | |
downloadFromList: false | |
downloadMeta: true | |
# renovate: datasource=github-releases depName=mudler/luet | |
luetVersion: 0.36.0 | |
- name: Build packages 🔧 | |
uses: luet-lab/[email protected] | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} | |
with: | |
build: true | |
fromIndex: true | |
onlyMissing: true | |
FINAL_REPO: quay.io/kairos/packages-arm64 | |
DOCKER_USERNAME: ${{ secrets.QUAY_USERNAME }} | |
DOCKER_PASSWORD: ${{ secrets.QUAY_PASSWORD }} | |
DOCKER_ENDPOINT: quay.io | |
REPOSITORY_TYPE: docker | |
pushFinalImages: true | |
pushCache: true | |
values: values/arm64.yaml | |
buildx: true | |
platform: linux/arm64 | |
# renovate: datasource=github-releases depName=mudler/luet | |
luetVersion: 0.36.0 | |
- name: Create repo 🔧 | |
uses: luet-lab/[email protected] | |
id: create_repo | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} | |
with: | |
FINAL_REPO: quay.io/kairos/packages-arm64 | |
DOCKER_USERNAME: ${{ secrets.QUAY_USERNAME }} | |
DOCKER_PASSWORD: ${{ secrets.QUAY_PASSWORD }} | |
DOCKER_ENDPOINT: quay.io | |
REPOSITORY_TYPE: docker | |
createRepo: true | |
pushCache: true | |
revisionSHA: true | |
# renovate: datasource=github-releases depName=mudler/luet | |
luetVersion: 0.36.0 | |
- name: Summary info | |
run: | | |
echo "Repo created at quay.io/kairos/packages-arm64:${{ steps.create_repo.outputs.LUET_PUSHED_REPO }}-repository.yaml" >> $GITHUB_STEP_SUMMARY |