Skip to content

Commit ae61169

Browse files
mmckyclaude
andauthored
RunsOn v3: switch disk=large → volume=80gb (#560)
Migrate the RunsOn self-hosted runner labels from the v2 `disk=large` sizing to the v3 `volume=80gb` form across all three RunsOn workflows (ci, cache, publish). `family=` and `image=` are unchanged. Must merge together with this repo's move from the v2 to the v3 RunsOn GitHub App: v2 does not understand `volume=`, and a v3 runner left on `disk=large` boots the image default root volume. Part of QuantEcon/lectures#5 See QuantEcon/meta#322 Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
1 parent bf44eb4 commit ae61169

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/cache.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
workflow_dispatch:
77
jobs:
88
cache:
9-
runs-on: "runs-on=${{ github.run_id }}/family=g4dn.2xlarge/image=quantecon_ubuntu2404/disk=large"
9+
runs-on: "runs-on=${{ github.run_id }}/family=g4dn.2xlarge/image=quantecon_ubuntu2404/volume=80gb"
1010
steps:
1111
- uses: actions/checkout@v6
1212
- name: Setup Anaconda

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Build Project [using jupyter-book]
22
on: [pull_request]
33
jobs:
44
preview:
5-
runs-on: "runs-on=${{ github.run_id }}/family=g4dn.2xlarge/image=quantecon_ubuntu2404/disk=large"
5+
runs-on: "runs-on=${{ github.run_id }}/family=g4dn.2xlarge/image=quantecon_ubuntu2404/volume=80gb"
66
steps:
77
- uses: actions/checkout@v6
88
with:

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ concurrency:
1717
jobs:
1818
publish:
1919
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
20-
runs-on: "runs-on=${{ github.run_id }}/family=g4dn.2xlarge/image=quantecon_ubuntu2404/disk=large"
20+
runs-on: "runs-on=${{ github.run_id }}/family=g4dn.2xlarge/image=quantecon_ubuntu2404/volume=80gb"
2121
environment:
2222
name: github-pages
2323
url: ${{ steps.deployment.outputs.page_url }}

0 commit comments

Comments
 (0)