Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build-test-distribute.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

debug-config:
needs: config
runs-on: aws-micro
runs-on: ubuntu-slim
steps:
- name: Print config
run: |
Expand Down Expand Up @@ -303,7 +303,7 @@ jobs:

collect-stats:
timeout-minutes: 5
runs-on: aws-micro
runs-on: ubuntu-slim
needs: [ config, upload-distributions ]
if: ${{ always() && needs.config.outputs.internal_build == 'true' }}
continue-on-error: true
Expand Down Expand Up @@ -331,7 +331,7 @@ jobs:
output-credentials: true

- name: Install dependencies
run: python3 -m pip install boto3 botocore
run: python3 -m pip install boto3 botocore requests

- name: Collect stats
env:
Expand All @@ -343,7 +343,7 @@ jobs:

update-artifacts:
timeout-minutes: 15
runs-on: aws-micro
runs-on: ubuntu-slim
needs: [ collect-stats, update-dev-documentation ]
if: always()
continue-on-error: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
tag-disable-macos: ${{ contains( github.event.pull_request.labels.*.name, 'disable-build-macos' ) }}
tag-disable-emscripten: ${{ contains( github.event.pull_request.labels.*.name, 'disable-build-emscripten' ) }}

runs-on: aws-micro
runs-on: ubuntu-slim

env:
# duplicate output values here since they cannot be accessed from steps
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/distro-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
config:
runs-on: aws-micro
runs-on: ubuntu-slim
env:
vs19_vcpkg_version: "2024.10.21"
vs22_vcpkg_version: "2026.03.18"
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:

update-artifacts:
timeout-minutes: 15
runs-on: aws-micro
runs-on: ubuntu-slim
needs: upload-distributions
if: always()
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prepare-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ on:

jobs:
always-success:
runs-on: aws-micro
runs-on: ubuntu-slim
steps:
- name: Do nothing
run: echo
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unity-nuget-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ concurrency:
jobs:
start-unity-instance:
name: Start unity instance
runs-on: aws-micro
runs-on: ubuntu-slim
outputs:
instance_started: ${{ steps.set-output.outputs.instance_started }}
steps:
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:


stop-instance:
runs-on: aws-micro
runs-on: ubuntu-slim
needs: [ unity-nuget-test ]
if: always()
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-win-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
cleanup-win-archives:
needs: update-win-version
if: always()
runs-on: aws-micro
runs-on: ubuntu-slim
steps:
- name: Delete Windows Binaries Archive
uses: geekyeggo/delete-artifact@176a747ab7e287e3ff4787bf8a148716375ca118 # v6.0.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/versioning-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ on:
jobs:
versioning-and-release-url:
timeout-minutes: 10
runs-on: aws-micro
runs-on: ubuntu-slim
outputs:
release_upload_url: ${{ steps.create_release.outputs.upload_url }}
release_id: ${{ steps.create_release.outputs.id }}
Expand Down
Loading