Skip to content

Commit

Permalink
Run expensive build steps on large runners
Browse files Browse the repository at this point in the history
  • Loading branch information
oxtoacart committed Sep 28, 2023
1 parent e9d9f83 commit c39c7a1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/browerstack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ env:

jobs:
build:
runs-on: ubuntu-latest
runs-on:
group: large-runners
steps:
- uses: actions/checkout@v3
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ on:
jobs:

build:
runs-on: ubuntu-latest
runs-on:
group: large-runners
steps:
- uses: actions/checkout@v2
- name: Install libpcap
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ env:
DATADOG_SITE: datadoghq.eu
jobs:
set-version:
runs-on: ubuntu-latest
runs-on:
group: large-runners
outputs:
version: ${{ steps.set-version.outputs.version }}
prefix: ${{ steps.set-version.outputs.prefix }}
Expand Down Expand Up @@ -57,7 +58,8 @@ jobs:
version: ${{ needs.set-version.outputs.version }}
version_file: ${{ needs.set-version.outputs.version_file }}
prefix: ${{ needs.set-version.outputs.prefix }}
runs-on: ubuntu-latest
runs-on:
group: large-runners
steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -174,7 +176,8 @@ jobs:
s3cmd modify --add-header='content-type':'application/vnd.android.package-archive' "s3://$S3_BUCKET/${{ env.prefix }}.aab"
push-binaries:
runs-on: ubuntu-latest
runs-on:
group: large-runners
needs: [ set-version , build-android ]
env:
version: ${{ needs.set-version.outputs.version }}
Expand Down

0 comments on commit c39c7a1

Please sign in to comment.