Skip to content

Commit

Permalink
Remove self-hosted runners (#194)
Browse files Browse the repository at this point in the history
  • Loading branch information
njooma authored Apr 16, 2024
1 parent b884892 commit 9e496d4
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ on:
jobs:
generate-docs:
if: github.repository_owner == 'viamrobotics'
runs-on: [self-hosted, x64]
runs-on: ubuntu-latest
container:
image: ghcr.io/cirruslabs/flutter:latest
steps:
- name: Checkout Push/Workflow Dispatch
uses: actions/checkout@v3
- name: Checkout Code
uses: actions/checkout@v4

- name: Setup Flutter
run: flutter pub get
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
permissions:
id-token: write # Required for authentication using OIDC
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
- uses: dart-lang/setup-dart@v1
- name: Install dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
prepare:
if: github.repository_owner == 'viamrobotics'
environment: release
runs-on: [self-hosted, x64]
runs-on: ubuntu-latest
container:
image: ghcr.io/cirruslabs/flutter:latest
outputs:
Expand All @@ -34,7 +34,7 @@ jobs:
&& sudo apt install gh -y
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4

- run: git config --global --add safe.directory /__w/viam-flutter-sdk/viam-flutter-sdk

Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
release:
needs: [prepare]
if: github.repository_owner == 'viamrobotics'
runs-on: [self-hosted, x64]
runs-on: ubuntu-latest
container:
image: ghcr.io/viamrobotics/canon:amd64

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: buildjet-2vcpu-ubuntu-2204

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
- run: flutter pub get
- run: flutter pub get --directory=example/viam_example_app
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update_protos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ on:
jobs:
update-protos:
if: github.repository_owner == 'viamrobotics'
runs-on: [self-hosted, x64]
runs-on: ubuntu-latest
container:
image: ghcr.io/cirruslabs/flutter:latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: bufbuild/buf-setup-action@v1.25.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 9e496d4

Please sign in to comment.