Skip to content

Commit

Permalink
Update runners to use a higher capacity
Browse files Browse the repository at this point in the history
  • Loading branch information
misraved committed Dec 13, 2023
1 parent d0180ea commit 24974e6
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/registry-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,15 @@ jobs:
exit 1
fi
- name: Increase swapfile
run: |
sudo swapoff -a
sudo fallocate -l 15G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo swapon --show
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/steampipe-anywhere.yml
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ jobs:
build-postgres-15-fdw-linux-amd64:
name: Build Postgres 15 FDW for Linux - AMD64
runs-on:
labels: ubuntu_4_core
group: large-runners

steps:
- name: Set environment variables
Expand Down Expand Up @@ -566,7 +566,7 @@ jobs:
build-sqlite-extension-linux-amd64:
name: Build SQLite Extension for Linux - AMD64
runs-on:
labels: ubuntu_4_core
group: large-runners

steps:
- name: Set environment variables
Expand Down Expand Up @@ -736,7 +736,7 @@ jobs:
build-export-tool:
name: Build Export Tool
runs-on:
labels: ubuntu_4_core
group: large-runners

steps:
- name: Set environment variables
Expand Down Expand Up @@ -810,7 +810,7 @@ jobs:
build-draft-release:
name: Build Draft Release
runs-on:
labels: ubuntu_4_core
group: large-runners
needs:
# Postgres 14
- build-postgres-14-fdw-linux-amd64
Expand Down

0 comments on commit 24974e6

Please sign in to comment.