-
Notifications
You must be signed in to change notification settings - Fork 546
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): add conformance pipelines
This was missed when moving to GHA. Signed-off-by: Noel Georgi <git@frezbo.dev>
- Loading branch information
Showing
5 changed files
with
237 additions
and
3 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT. | ||
# | ||
# Generated on 2024-06-11T15:17:44Z by kres 7360563. | ||
|
||
name: integration-conformance-cron | ||
concurrency: | ||
group: ${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
"on": | ||
schedule: | ||
- cron: 30 4 * * * | ||
jobs: | ||
default: | ||
runs-on: | ||
- self-hosted | ||
- talos | ||
steps: | ||
- 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 | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
- name: Unshallow | ||
run: | | ||
git fetch --prune --unshallow | ||
- 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 | ||
- name: Download artifacts | ||
if: github.event_name != 'schedule' | ||
uses: actions/download-artifact@v4 | ||
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: build | ||
if: github.event_name == 'schedule' | ||
env: | ||
IMAGE_REGISTRY: registry.dev.siderolabs.io | ||
PLATFORM: linux/amd64 | ||
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: conformance-qemu | ||
env: | ||
IMAGE_REGISTRY: registry.dev.siderolabs.io | ||
QEMU_CPUS: "4" | ||
QEMU_WORKERS: "2" | ||
TEST_MODE: fast-conformance | ||
run: | | ||
sudo -E make e2e-qemu | ||
- name: save artifacts | ||
if: always() | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: talos-logs-integration-qemu | ||
path: |- | ||
~/.talos/clusters/**/*.log | ||
!~/.talos/clusters/**/swtpm.log | ||
retention-days: "5" |
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
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
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