# Generated by tools/gen-pipelines - do not edit by hand. when: - event: push branch: master matrix: PACKAGE: - consul - nfpm - tea - unkin-ca-certificates - uv - vault - xh - yq steps: - name: build image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest commands: - mkdir -p /woodpecker/rpms - ln -s /woodpecker/rpms /workspace - ./tools/build build --distro fedora/44 --buildah "$PACKAGE" privileged: true backend_options: kubernetes: serviceAccountName: default resources: requests: memory: 512Mi cpu: 1 limits: memory: 2Gi cpu: 2 - name: upload image: git.unkin.net/unkin/almalinux9-base:latest commands: - | HOST="https://artifactapi.k8s.syd1.au.unkin.net" REPO="rpm-vendor-f44" for rpm in $(find dist -type f -name '*.rpm'); do FILE=$$(basename "$$rpm") # artifactapi has no HEAD route (405); probe the served Packages path. code=$$(curl -s -o /dev/null -w '%{http_code}' "$$HOST/api/v2/remotes/$$REPO/files/Packages/$$FILE" || true) if [ "$$code" = "200" ]; then echo "$$FILE already exists in $$REPO (HTTP $$code); skipping upload" continue fi echo "Uploading $$FILE to $$REPO (existence probe returned $$code)" curl -f -X PUT \ "$$HOST/api/v2/remotes/$$REPO/files/$$FILE" \ -H "Content-Type: application/x-rpm" \ --data-binary @"$$rpm" done depends_on: [build] backend_options: kubernetes: serviceAccountName: default resources: requests: memory: 128Mi cpu: 100m limits: memory: 512Mi cpu: 500m