diff --git a/.github/workflows/build-multi-arch.yml b/.github/workflows/build-multi-arch.yml index 664b3a3157..fe0a72d050 100644 --- a/.github/workflows/build-multi-arch.yml +++ b/.github/workflows/build-multi-arch.yml @@ -29,26 +29,27 @@ jobs: - name: Build run: make docker all - - build_arm: - name: Build ARM64 - runs-on: [self-hosted, linux, arm64] - steps: - - - name: Set up Go 1.18 - uses: actions/setup-go@v2 - with: - go-version: '1.18' - id: go - - - name: Check out code into the Go module directory - uses: actions/checkout@v2 - - - name: Clean up docker - run: docker system prune -a --volumes -f - - - name: Clean up stale docker images - run: sudo docker image prune -f - - - name: Build - run: make docker all + + # Disable arm-build + # build_arm: + # name: Build ARM64 + # runs-on: [self-hosted, linux, arm64] + # steps: + + # - name: Set up Go 1.18 + # uses: actions/setup-go@v2 + # with: + # go-version: '1.18' + # id: go + + # - name: Check out code into the Go module directory + # uses: actions/checkout@v2 + + # - name: Clean up docker + # run: docker system prune -a --volumes -f + + # - name: Clean up stale docker images + # run: sudo docker image prune -f + + # - name: Build + # run: make docker all diff --git a/.github/workflows/stale_issue_pr.yaml b/.github/workflows/stale_issue_pr.yaml index f69a7f71ed..6547f33beb 100644 --- a/.github/workflows/stale_issue_pr.yaml +++ b/.github/workflows/stale_issue_pr.yaml @@ -23,5 +23,3 @@ jobs: operations-per-run: 100 stale-issue-message: 'This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 14 days' stale-pr-message: 'This pull request is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 14 days' - - name: Print outputs - run: echo ${{ join(steps.stale.outputs.*, ',') }}