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
2024-05-24 18:36:49 +05:30
name : integration-misc-2-cron
2024-04-23 23:31:44 +05:30
concurrency :
group : ${{ github.head_ref || github.run_id }}
cancel-in-progress : true
"on" :
schedule :
- cron : 30 5 * * *
jobs :
default :
runs-on :
- self-hosted
- talos
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 : 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-24 15:19:27 +05:30
- name : uki-certs
if : github.event_name == 'schedule'
env :
PLATFORM : linux/amd64
run : |
make uki-certs
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
- name : talosctl-cni-bundle
if : github.event_name == 'schedule'
run : |
make talosctl-cni-bundle
- name : images-essential
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
run : |
make images-essential
2024-04-23 23:31:44 +05:30
- name : e2e-bios-cgroupsv1
env :
IMAGE_REGISTRY : registry.dev.siderolabs.io
SHORT_INTEGRATION_TEST : "yes"
2024-08-22 21:30:29 +05:30
WITH_CONFIG_PATCH : '@hack/test/patches/cgroupsv1.yaml'
2024-04-23 23:31:44 +05:30
WITH_UEFI : "false"
run : |
sudo -E make e2e-qemu
- name : e2e-disk-image
env :
IMAGE_REGISTRY : registry.dev.siderolabs.io
SHORT_INTEGRATION_TEST : "yes"
USE_DISK_IMAGE : "true"
VIA_MAINTENANCE_MODE : "true"
WITH_DISK_ENCRYPTION : "true"
run : |
sudo -E make e2e-qemu
2024-05-27 21:45:17 +05:30
- name : save artifacts
if : always()
uses : actions/upload-artifact@v4
with :
name : talos-logs-integration-misc-2
path : |-
~/.talos/clusters/**/*.log
!~/.talos/clusters/**/swtpm.log
retention-days : "5"