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

Migrate runners #89

Merged
merged 5 commits into from
Jan 10, 2024
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
4 changes: 1 addition & 3 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ on:
jobs:
checks:
if: github.repository_owner == 'viamrobotics'
runs-on: [self-hosted, x64]
container:
image: ghcr.io/viamrobotics/canon:amd64
runs-on: buildjet-4vcpu-ubuntu-2204
steps:
- name: Checkout PR/Push/Workflow Dispatch
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/license_finder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
license_finder:
name: Audit 3rd-Party Licenses
runs-on: [x64, qemu-host]
runs-on: ubuntu-latest
container:
image: ghcr.io/viamrobotics/canon:amd64-cache
options: --platform linux/amd64
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@ on:
jobs:
publish:
if: github.repository_owner == 'viamrobotics'
runs-on: [self-hosted, x64]
container:
image: ghcr.io/viamrobotics/canon:amd64
runs-on: ubuntu-latest

steps:
- name: Check if organization member
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ jobs:
release:
needs: [prepare, build_macos, build_linux]
if: github.repository_owner == 'viamrobotics'
runs-on: buildjet-2vcpu-ubuntu-2204
runs-on: ubuntu-latest

steps:
- uses: actions/download-artifact@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ on:
jobs:
test:
if: github.repository_owner == 'viamrobotics'
runs-on: [self-hosted, x64]
runs-on: buildjet-4vcpu-ubuntu-2204
container:
image: ghcr.io/viamrobotics/canon:amd64
image: ghcr.io/viamrobotics/canon:amd64-cache
steps:
- name: Checkout PR/Push/Workflow Dispatch
uses: actions/checkout@v3
Expand Down
8 changes: 3 additions & 5 deletions .github/workflows/update_protos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@ on:
jobs:
update-protos:
if: github.repository_owner == 'viamrobotics'
runs-on: [self-hosted, x64]
container:
image: ghcr.io/viamrobotics/canon:amd64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: bufbuild/[email protected]
Expand All @@ -32,5 +30,5 @@ jobs:
delete-branch: true
title: Automated Protos Update
body: This is an auto-generated PR to update proto definitions. Check the commits to see which repos and commits are responsible for the changes
assignees: npmenard,stuqdog
reviewers: npmenard,stuqdog
assignees: njooma,stuqdog
reviewers: njooma,stuqdog
Loading