Skip to content
Draft
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion .github/workflows/build_container_images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ run-name: ${{ github.actor }}'s changes have triggered a build of the sdk contai
on: [workflow_call]
jobs:
build-container-images:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-8core
services:
# This local container registry is used to temporarily hold intermediate
# docker images until they can be tested without pushing to the remote
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_container_images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build-test:
uses: ./.github/workflows/test_container_images.yaml
push:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-8core
needs: [build-test]
steps:
- run: echo "The job was automatically triggered by a ${{ github.event_name }} event."
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_container_images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
build-container-images:
uses: ./.github/workflows/build_container_images.yaml
test-container-images:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-8core
needs: [build-container-images]
outputs:
intrinsic_ai_sdk_version: ${{ needs.build-container-images.outputs.intrinsic_ai_sdk_version }}
Expand Down
Loading