Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

disable arm build #2052

Merged
merged 1 commit into from
Aug 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 24 additions & 23 deletions .github/workflows/build-multi-arch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 0 additions & 2 deletions .github/workflows/stale_issue_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.*, ',') }}