Skip to content

Commit

Permalink
ci: do not build images with x8 runner
Browse files Browse the repository at this point in the history
  • Loading branch information
shumkov committed Nov 7, 2023
1 parent 4338cc9 commit 8a4fc2e
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/tests-build-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ on:
workflow_call:

jobs:
# TODO: try with x8
build-drive:
name: Build Drive image
runs-on: [ "self-hosted", "linux", "x64", "8x-ubuntu-platform" ]
runs-on: [ "self-hosted", "linux", "x64", "ubuntu-platform" ]
steps:
- name: Check out repo
uses: actions/checkout@v4
Expand All @@ -28,14 +29,13 @@ jobs:
dockerhub_username: ${{ secrets.DOCKERHUB_USERNAME }}
dockerhub_token: ${{ secrets.DOCKERHUB_TOKEN }}
push: true
bucket: multi-runner-linux-x64-platform-8x-cache-wp1sy0o6
region: ${{ vars.AWS_REGION }}
cache_mounts: |
cargo_registry_index
cargo_registry_cache
cargo_git
# target_amd64
# TODO: try with x8
build-dapi:
name: Build DAPI image
runs-on: [ "self-hosted", "linux", "x64", "8x-ubuntu-platform" ]
Expand Down Expand Up @@ -68,12 +68,11 @@ jobs:
cargo_registry_index
cargo_registry_cache
cargo_git
# target_wasm
# unplugged_amd64
# TODO: try with x8
build-dashmate-helper:
name: Build Dashmate helper image
runs-on: [ "self-hosted", "linux", "x64", "8x-ubuntu-platform" ]
runs-on: [ "self-hosted", "linux", "x64", "ubuntu-platform" ]
steps:
- name: Check out repo
uses: actions/checkout@v4
Expand All @@ -97,11 +96,8 @@ jobs:
dockerhub_username: ${{ secrets.DOCKERHUB_USERNAME }}
dockerhub_token: ${{ secrets.DOCKERHUB_TOKEN }}
push: true
bucket: multi-runner-linux-x64-platform-8x-cache-wp1sy0o6
region: ${{ vars.AWS_REGION }}
cache_mounts: |
cargo_registry_index
cargo_registry_cache
cargo_git
# target_wasm
# unplugged_amd64

0 comments on commit 8a4fc2e

Please sign in to comment.