diff --git a/.github/workflows/linux_long_test.yml b/.github/workflows/dragonfly.yml similarity index 57% rename from .github/workflows/linux_long_test.yml rename to .github/workflows/dragonfly.yml index bff22a4..1096be6 100644 --- a/.github/workflows/linux_long_test.yml +++ b/.github/workflows/dragonfly.yml @@ -2,10 +2,10 @@ name: linux - long test - amd64 on: push: branches: - - 'master' + - 'updates' paths: - 'action.yml' - - '.github/workflows/linux_long_test.yml' + - 'dragonfly.yml' jobs: build: @@ -22,11 +22,5 @@ jobs: uses: iwdgo/gotip-build@master id: gotip with: - go_variables: GO_TEST_SHORT=0 GO_TEST_TIMEOUT_SCALE=8 + go_variables: GO_TEST_SHORT=1 GO_TEST_TIMEOUT_SCALE=8 test_build: true - - - name: Upload go executable - uses: actions/upload-artifact@v3 - with: - name: gotip-${{ env.goos }}-${{ env.goarch }} - path: go/ diff --git a/.github/workflows/linux_arm.yml b/.github/workflows/linux_arm.yml index fb87ba7..b727bb4 100644 --- a/.github/workflows/linux_arm.yml +++ b/.github/workflows/linux_arm.yml @@ -2,7 +2,7 @@ name: arm v5/6/7 on: push: branches: - - 'master' + - 'updates' paths: - 'action.yml' - '.github/workflows/linux_arm.yml' @@ -13,7 +13,7 @@ jobs: strategy: matrix: go_arch: [arm] - go_arm: [5, 6, 7] + go_arm: [5, 6] fail-fast: false name: Build runs-on: ubuntu-latest @@ -30,17 +30,3 @@ jobs: with: go_variables: GOARCH=${{ matrix.go_arch }} GOARM=${{ matrix.go_arm}} test_build: true - - - name: Upload go executable - uses: actions/upload-artifact@v3 - if: ${{ env.crosscompile == 'false' }} - with: - name: gotip-${{ env.goos }}-${{ env.goarch }} - path: go/ - - - name: Upload go executable - uses: actions/upload-artifact@v3 - if: ${{ env.crosscompile == 'true' }} - with: - name: gotip-${{ env.goos }}-${{ env.goarch }} - path: go/bin/${{ env.goos }}_${{ env.goarch }} diff --git a/architecture/main.go b/architecture/main.go index 2c52499..fe60e40 100644 --- a/architecture/main.go +++ b/architecture/main.go @@ -34,11 +34,11 @@ var distro = []struct { {"linux", "ppc64le", "", "", "", "", ""}, {"linux", "riscv64", "", "", "edge", "", ""}, {"linux", "arm", "5", "", "", "arm32v5/golang", "arm v5"}, - // TODO arm32v6/golang:alpine - {"linux", "arm", "6", "", "", "", "arm v6"}, + {"linux", "arm", "6", "", "", "arm32v6/golang", "arm v6"}, {"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.