2024-04-23 23:31:44 +05:30
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
#
2024-09-09 15:51:58 +04:00
# Generated on 2024-09-09T12:40:13Z by kres 8be5fa7.
2024-04-23 23:31:44 +05:30
name : integration-cloud-images-cron
concurrency :
group : ${{ github.head_ref || github.run_id }}
cancel-in-progress : true
"on" :
schedule :
- cron : 30 2 * * *
jobs :
default :
runs-on :
- self-hosted
- generic
steps :
2024-05-23 15:50:55 +05:30
- name : gather-system-info
id : system-info
uses : kenchan0130/actions-system-info@v1.3.0
continue-on-error : true
- name : print-system-info
run : |
MEMORY_GB=$((${{ steps.system-info.outputs.totalmem }}/1024/1024/1024))
OUTPUTS=(
"CPU Core: ${{ steps.system-info.outputs.cpu-core }}"
"CPU Model: ${{ steps.system-info.outputs.cpu-model }}"
"Hostname: ${{ steps.system-info.outputs.hostname }}"
"NodeName: ${NODE_NAME}"
"Kernel release: ${{ steps.system-info.outputs.kernel-release }}"
"Kernel version: ${{ steps.system-info.outputs.kernel-version }}"
"Name: ${{ steps.system-info.outputs.name }}"
"Platform: ${{ steps.system-info.outputs.platform }}"
"Release: ${{ steps.system-info.outputs.release }}"
"Total memory: ${MEMORY_GB} GB"
)
for OUTPUT in "${OUTPUTS[@]}";do
echo "${OUTPUT}"
done
continue-on-error : true
2024-04-23 23:31:44 +05:30
- name : checkout
uses : actions/checkout@v4
- name : Unshallow
run : |
git fetch --prune --unshallow
2024-05-24 15:19:27 +05:30
- name : Set up Docker Buildx
id : setup-buildx
uses : docker/setup-buildx-action@v3
with :
driver : remote
endpoint : tcp://buildkit-amd64.ci.svc.cluster.local:1234
timeout-minutes : 10
2024-04-23 23:31:44 +05:30
- name : Mask secrets
run : |
2024-09-05 21:55:57 +05:30
echo "$(sops -d .secrets.yaml | yq -e '.secrets | to_entries[] | "::add-mask::" + .value')"
2024-04-23 23:31:44 +05:30
- name : Set secrets for job
run : |
sops -d .secrets.yaml | yq -e '.secrets | to_entries[] | .key + "=" + .value' >> "$GITHUB_ENV"
- name : Download artifacts
2024-05-22 17:15:20 +05:30
if : github.event_name != 'schedule'
2024-04-23 23:31:44 +05:30
uses : actions/download-artifact@v4
with :
2024-05-27 21:45:17 +05:30
name : talos-artifacts
2024-04-23 23:31:44 +05:30
path : _out
- name : Fix artifact permissions
2024-05-23 15:50:55 +05:30
if : github.event_name != 'schedule'
2024-04-23 23:31:44 +05:30
run : |
xargs -a _out/executable-artifacts -I {} chmod +x {}
2024-09-09 15:51:58 +04:00
- name : ci-temp-release-tag
if : github.event_name != 'schedule'
run : |
make ci-temp-release-tag
2024-05-22 17:15:20 +05:30
- name : build
if : github.event_name == 'schedule'
env :
IMAGE_REGISTRY : registry.dev.siderolabs.io
2024-05-24 15:19:27 +05:30
PLATFORM : linux/amd64
2024-05-22 17:15:20 +05:30
PUSH : "true"
run : |
make talosctl-linux-amd64 kernel sd-boot sd-stub initramfs installer imager talos _out/integration-test-linux-amd64
2024-04-23 23:31:44 +05:30
- name : images
env :
IMAGE_REGISTRY : registry.dev.siderolabs.io
PLATFORM : linux/amd64,linux/arm64
run : |
make images
- name : cloud-images
run : |
make cloud-images