Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ env:
jobs:
rust:
name: Rust (fmt + clippy + test)
runs-on: ubuntu-latest
runs-on: akua-heavy-ci-v2
steps:
- uses: actions/checkout@v6

Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:

sdk:
name: SDK (bun + node WASI)
runs-on: ubuntu-latest
runs-on: akua-heavy-ci-v2
# Exercises the @akua-dev/sdk surface end-to-end. `task sdk:test`
# depends on `build:render-worker` + `build:engines`, so we need
# the same Rust + wasm32-wasip1 setup as the rust job.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
runs-on: akua-heavy-ci-v2
steps:
- uses: actions/checkout@v6

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ permissions:

jobs:
detect-version:
runs-on: ubuntu-latest
runs-on: akua-x64-ci-v2
outputs:
version: ${{ steps.detect.outputs.version }}
tag: ${{ steps.detect.outputs.tag }}
Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:

native-publish:
needs: detect-version
runs-on: ubuntu-latest
runs-on: akua-x64-ci-v2
steps:
- uses: actions/checkout@v6
with:
Expand Down Expand Up @@ -297,7 +297,7 @@ jobs:

sdk-publish:
needs: [detect-version, native-publish]
runs-on: ubuntu-latest
runs-on: akua-x64-ci-v2
steps:
- uses: actions/setup-node@v4
with:
Expand Down
27 changes: 13 additions & 14 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
# place (the only spot a typo here would surface).
# ---------------------------------------------------------------------------
detect-version:
runs-on: ubuntu-latest
runs-on: akua-x64-ci-v2
outputs:
tag: ${{ steps.parse.outputs.tag }}
version: ${{ steps.parse.outputs.version }}
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
# Windows natively).
# ---------------------------------------------------------------------------
wasm-bundle:
runs-on: ubuntu-latest
runs-on: akua-heavy-ci-v2
needs: detect-version
steps:
- uses: actions/checkout@v6
Expand Down Expand Up @@ -267,15 +267,15 @@ jobs:
# + Apple SDK handle this without extra setup.
- host: macos-14
target: x86_64-apple-darwin
- host: ubuntu-latest
- host: akua-heavy-ci-v2
target: x86_64-unknown-linux-gnu
- host: ubuntu-latest
- host: akua-heavy-ci-v2
target: aarch64-unknown-linux-gnu
cross: true
- host: ubuntu-latest
- host: akua-heavy-ci-v2
target: x86_64-unknown-linux-musl
cross: true
- host: ubuntu-latest
- host: akua-heavy-ci-v2
target: aarch64-unknown-linux-musl
cross: true
- host: windows-latest
Expand Down Expand Up @@ -384,7 +384,7 @@ jobs:
# ---------------------------------------------------------------------------
trigger-publish:
needs: [detect-version, wasm-bundle, native-build, sdk-build, github-release]
runs-on: ubuntu-latest
runs-on: akua-x64-ci-v2
if: github.event_name == 'push' || inputs.dry-run == false
steps:
- name: Dispatch release-publish.yml
Expand Down Expand Up @@ -417,7 +417,7 @@ jobs:
# ---------------------------------------------------------------------------
sdk-build:
needs: detect-version
runs-on: ubuntu-latest
runs-on: akua-heavy-ci-v2
steps:
- uses: actions/checkout@v6
with:
Expand Down Expand Up @@ -486,10 +486,10 @@ jobs:
matrix:
include:
- target: x86_64-unknown-linux-gnu
runner: ubuntu-latest
runner: akua-heavy-ci-v2
archive: tar.gz
- target: aarch64-unknown-linux-gnu
runner: ubuntu-latest
runner: akua-heavy-ci-v2
archive: tar.gz
- target: x86_64-apple-darwin
runner: macos-latest
Expand Down Expand Up @@ -531,8 +531,7 @@ jobs:
- name: Cross-compile for linux/arm64
if: matrix.target == 'aarch64-unknown-linux-gnu'
run: |
sudo apt-get update
sudo apt-get install -y gcc-aarch64-linux-gnu
aarch64-linux-gnu-gcc --version
echo 'CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=aarch64-linux-gnu-gcc' >> "$GITHUB_ENV"

- name: Rust target
Expand Down Expand Up @@ -633,7 +632,7 @@ jobs:
# ---------------------------------------------------------------------------
github-release:
needs: [detect-version, cli-build]
runs-on: ubuntu-latest
runs-on: akua-x64-ci-v2
if: github.event_name == 'push' || inputs.dry-run == false
steps:
- uses: actions/checkout@v6
Expand Down Expand Up @@ -689,7 +688,7 @@ jobs:
# ---------------------------------------------------------------------------
docker:
needs: [detect-version, cli-build]
runs-on: ubuntu-latest
runs-on: akua-docker-ci-v2
if: github.event_name == 'push' || inputs.dry-run == false
steps:
- uses: actions/checkout@v6
Expand Down