From 59bacec3c98aba6049d4a5bc38b3b48d0a38fcb4 Mon Sep 17 00:00:00 2001 From: Constantin Konstantinidis Date: Mon, 2 Dec 2024 07:27:43 +0100 Subject: [PATCH] Revert "Add test on dragonfly" This reverts commit fa3ce632663b513b794cd9796cd0939036a901c7. Reason for revert: image does not start --- .github/workflows/dragonfly.yml | 26 -------------------------- architecture/main.go | 1 - 2 files changed, 27 deletions(-) delete mode 100644 .github/workflows/dragonfly.yml diff --git a/.github/workflows/dragonfly.yml b/.github/workflows/dragonfly.yml deleted file mode 100644 index c5387c0..0000000 --- a/.github/workflows/dragonfly.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: dragonfly -on: - push: - branches: - - 'master' - paths: - - 'action.yml' - - '.github/workflows/dragonfly.yml' -jobs: - - build: - name: Build - runs-on: ubuntu-latest - steps: - - name: Set up Go - uses: actions/setup-go@v5 - with: - go-version: 1.22.x - id: go - - - name: Build go from tip - uses: iwdgo/gotip-build@updates - id: gotip - with: - go_variables: GO_TEST_SHORT=1 GO_TEST_TIMEOUT_SCALE=8 GOOS=dragonfly GOARCH=amd64 - test_build: true diff --git a/architecture/main.go b/architecture/main.go index fc97268..2c52499 100644 --- a/architecture/main.go +++ b/architecture/main.go @@ -39,7 +39,6 @@ var distro = []struct { {"linux", "arm", "7", "", "", "", "arm v7"}, {"linux", "arm64", "8", "", "", "", "arm v8"}, {"linux", "386", "", "i386", "", "", ""}, - {"dragonfly", "amd64", "", "", "", "chainguard/dragonfly", ""}, } // setDefault returns the variable value read using os.Getenv and d when the value read is empty.