mirror of
https://github.com/siderolabs/talos.git
synced 2026-04-22 14:11:57 +02:00
94 lines
3.3 KiB
YAML
94 lines
3.3 KiB
YAML
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
|
|
#
|
|
# Generated on 2026-03-15T13:42:44Z by kres e68c408.
|
|
|
|
concurrency:
|
|
group: ${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
"on":
|
|
schedule:
|
|
- cron: 30 3 * * *
|
|
name: integration-embedded-cron
|
|
jobs:
|
|
default:
|
|
runs-on:
|
|
group: large
|
|
steps:
|
|
- name: gather-system-info
|
|
id: system-info
|
|
uses: kenchan0130/actions-system-info@59699597e84e80085a750998045983daa49274c4 # version: v1.4.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
|
|
- name: checkout
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # version: v6.0.2
|
|
- name: Unshallow
|
|
run: |
|
|
git fetch --prune --unshallow
|
|
- name: Set up Docker Buildx
|
|
id: setup-buildx
|
|
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # version: v4.0.0
|
|
with:
|
|
driver: remote
|
|
endpoint: tcp://buildkit-amd64.ci.svc.cluster.local:1234
|
|
timeout-minutes: 10
|
|
- name: Download artifacts
|
|
if: github.event_name != 'schedule'
|
|
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # version: v8.0.0
|
|
with:
|
|
name: talos-artifacts
|
|
path: _out
|
|
- name: Fix artifact permissions
|
|
if: github.event_name != 'schedule'
|
|
run: |
|
|
xargs -a _out/executable-artifacts -I {} chmod +x {}
|
|
- name: ci-temp-release-tag
|
|
if: github.event_name != 'schedule'
|
|
run: |
|
|
make ci-temp-release-tag
|
|
- name: build
|
|
if: github.event_name == 'schedule'
|
|
env:
|
|
IMAGE_REGISTRY: registry.dev.siderolabs.io
|
|
PLATFORM: linux/amd64,linux/arm64
|
|
PUSH: "true"
|
|
run: |
|
|
make talosctl-linux-amd64 kernel sd-boot sd-stub initramfs installer-base imager talos _out/integration-test-linux-amd64
|
|
- name: talosctl-cni-bundle
|
|
if: github.event_name == 'schedule'
|
|
run: |
|
|
make talosctl-cni-bundle
|
|
- name: e2e-embedded
|
|
env:
|
|
IMAGE_REGISTRY: registry.dev.siderolabs.io
|
|
run: |
|
|
sudo -E make e2e-embedded
|
|
- name: save artifacts
|
|
if: always()
|
|
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # version: v7.0.0
|
|
with:
|
|
name: talos-logs-integration-embedded
|
|
path: |-
|
|
/tmp/logs-*.tar.gz
|
|
/tmp/support-*.zip
|
|
retention-days: "5"
|