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.