From 58169416c806be76a6c5925958bf19e62fa7d1db Mon Sep 17 00:00:00 2001 From: maskpp Date: Tue, 7 May 2024 15:32:36 +0800 Subject: [PATCH] change docker trigger branch for test 15 --- .github/workflows/docker_arm64.yml | 2 +- .github/workflows/go.yml | 32 ------------------------------ 2 files changed, 1 insertion(+), 33 deletions(-) delete mode 100644 .github/workflows/go.yml diff --git a/.github/workflows/docker_arm64.yml b/.github/workflows/docker_arm64.yml index 38c2bf357763..260c20ce544c 100644 --- a/.github/workflows/docker_arm64.yml +++ b/.github/workflows/docker_arm64.yml @@ -65,6 +65,6 @@ jobs: cache-from: type=gha cache-to: type=gha,mode=max platforms: linux/amd64 - push: true + push: false tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} \ No newline at end of file diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml deleted file mode 100644 index a42c176e18c9..000000000000 --- a/.github/workflows/go.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: i386 linux tests - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - workflow_dispatch: - -jobs: - build: - runs-on: self-hosted - steps: - - uses: actions/checkout@v4 - - - name: Set up Go - uses: actions/setup-go@v5 - with: - go-version: 1.21.4 - cache-dependency-path: | - go.mod - go.sum - - - name: Go mod - if: steps.cache-primes.outputs.cache-hit != 'true' - run: go mod tidy - - - name: Run tests - run: go test -short ./... - env: - GOOS: linux - GOARCH: 386