-
Notifications
You must be signed in to change notification settings - Fork 602
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): drop equinix metal e2e-test
Drop Equinix Metal e2e tests, due to EM machines mostly not booting properly over PXE, drop the test as it adds no value. Fixes: #10034 Signed-off-by: Noel Georgi <[email protected]>
- Loading branch information
Showing
10 changed files
with
46 additions
and
546 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT. | ||
# | ||
# Generated on 2024-12-25T15:13:54Z by kres fcff05e. | ||
# Generated on 2024-12-26T15:20:08Z by kres fcff05e. | ||
|
||
name: default | ||
concurrency: | ||
|
@@ -1237,122 +1237,6 @@ jobs: | |
/tmp/logs-*.tar.gz | ||
/tmp/support-*.zip | ||
retention-days: "5" | ||
integration-equinix-metal: | ||
permissions: | ||
actions: read | ||
contents: write | ||
issues: read | ||
packages: write | ||
pull-requests: read | ||
runs-on: | ||
- self-hosted | ||
- generic | ||
if: contains(fromJSON(needs.default.outputs.labels), 'integration/equinix-metal') | ||
needs: | ||
- default | ||
steps: | ||
- name: gather-system-info | ||
id: system-info | ||
uses: kenchan0130/[email protected] | ||
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: Mask secrets | ||
run: | | ||
echo "$(sops -d .secrets.yaml | yq -e '.secrets | to_entries[] | "::add-mask::" + .value')" | ||
- name: Set secrets for job | ||
run: | | ||
sops -d .secrets.yaml | yq -e '.secrets | to_entries[] | .key + "=" + .value' >> "$GITHUB_ENV" | ||
- 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: 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 imager talos _out/integration-test-linux-amd64 | ||
- name: talosctl-cni-bundle | ||
if: github.event_name == 'schedule' | ||
run: | | ||
make talosctl-cni-bundle | ||
- name: e2e-equinix-metal-prepare | ||
env: | ||
IMAGE_REGISTRY: registry.dev.siderolabs.io | ||
run: | | ||
make e2e-equinix-metal-prepare | ||
- name: checkout contrib | ||
uses: actions/checkout@v4 | ||
with: | ||
path: _out/contrib | ||
ref: main | ||
repository: siderolabs/contrib | ||
- name: setup tf | ||
uses: hashicorp/setup-terraform@v3 | ||
with: | ||
terraform_wrapper: "false" | ||
- name: tf apply | ||
env: | ||
TF_E2E_ACTION: apply | ||
TF_E2E_TEST_TYPE: equinix-metal | ||
TF_SCRIPT_DIR: _out/contrib | ||
run: | | ||
make e2e-cloud-tf | ||
- name: e2e-equinix-metal | ||
run: | | ||
make e2e-equinix-metal | ||
- name: tf destroy | ||
if: always() | ||
env: | ||
TF_E2E_ACTION: destroy | ||
TF_E2E_TEST_TYPE: equinix-metal | ||
TF_SCRIPT_DIR: _out/contrib | ||
run: | | ||
make e2e-cloud-tf | ||
integration-extensions: | ||
permissions: | ||
actions: read | ||
|
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.