From d5a333d48ca1324de60bd92e177954f807107a93 Mon Sep 17 00:00:00 2001 From: Oleg Bespalov Date: Wed, 11 Oct 2023 15:54:33 +0200 Subject: [PATCH] Temporary remove the ARM tests workflow --- .github/workflows/arm-tests.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/workflows/arm-tests.yml diff --git a/.github/workflows/arm-tests.yml b/.github/workflows/arm-tests.yml deleted file mode 100644 index ba901de0bb2..00000000000 --- a/.github/workflows/arm-tests.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: ARM tests -on: - push: - branches: - - master - -jobs: - test: - runs-on: [self-hosted, Linux, ARM64] - steps: - - name: Checkout code - uses: actions/checkout@v3 - - name: Install Go - uses: actions/setup-go@v3 - with: - go-version: 1.21.x - check-latest: true - - name: Run tests - run: | - set -x - go version - go env - export GOMAXPROCS=2 - export CGO_ENABLED=1 - go test -p 2 -race -timeout 800s -count 1 ./...