Skip to content

Commit

Permalink
ci: use ubuntu runners (#332)
Browse files Browse the repository at this point in the history
* ci: use ubuntu runners

* simplify workflow runner
  • Loading branch information
milapsheth authored Jul 10, 2024
1 parent 6eba099 commit 15e5185
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 23 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/build-latest-docker-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,7 @@ on:

jobs:
build-and-push-latest-docker-image:
strategy:
matrix:
os:
- ubuntu-latest
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
steps:
- name: Checkout code and submodule
uses: actions/checkout@v4
Expand Down
7 changes: 1 addition & 6 deletions .github/workflows/format.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,7 @@ on:

jobs:
format:
strategy:
matrix:
os:
# - ubuntu-latest
- macos-latest
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down
7 changes: 1 addition & 6 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,7 @@ on:

jobs:
lint:
strategy:
matrix:
os:
# - ubuntu-latest
- macos-latest
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
steps:
- name: Checkout code and submodule
uses: actions/checkout@v4
Expand Down
7 changes: 1 addition & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,7 @@ on:

jobs:
test:
strategy:
matrix:
os:
# - ubuntu-latest
- macos-latest
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
steps:
- name: Checkout code and submodule
uses: actions/checkout@v4
Expand Down

0 comments on commit 15e5185

Please sign in to comment.