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
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ jobs:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
- os: namespace-profile-linux-x64-default
target: x86_64-unknown-linux-gnu
- os: windows-latest
target: x86_64-pc-windows-msvc
- os: macos-latest
- os: namespace-profile-mac-default
target: aarch64-apple-darwin
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -100,7 +100,7 @@ jobs:
target-dir: ${{ runner.os == 'Windows' && format('{0}/target', env.DEV_DRIVE) || '' }}

- run: rustup target add x86_64-unknown-linux-musl
if: ${{ matrix.os == 'ubuntu-latest' }}
if: ${{ matrix.target == 'x86_64-unknown-linux-gnu' }}

- run: cargo check --all-targets --all-features
env:
Expand All @@ -114,7 +114,7 @@ jobs:
needs: detect-changes
if: needs.detect-changes.outputs.code-changed == 'true'
name: Lint
runs-on: ubuntu-latest
runs-on: namespace-profile-linux-x64-default
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: ./.github/actions/clone
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:

run:
name: Run task
runs-on: ubuntu-latest
runs-on: namespace-profile-linux-x64-default
needs:
- download-previous-rolldown-binaries
steps:
Expand Down Expand Up @@ -194,8 +194,8 @@ jobs:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
- os: macos-latest
- os: namespace-profile-linux-x64-default
- os: namespace-profile-mac-default
- os: windows-latest
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -232,10 +232,10 @@ jobs:
- name: Build with upstream
uses: ./.github/actions/build-upstream
with:
target: ${{ matrix.os == 'ubuntu-latest' && 'x86_64-unknown-linux-gnu' || matrix.os == 'windows-latest' && 'x86_64-pc-windows-msvc' || 'aarch64-apple-darwin' }}
target: ${{ matrix.os == 'namespace-profile-linux-x64-default' && 'x86_64-unknown-linux-gnu' || matrix.os == 'windows-latest' && 'x86_64-pc-windows-msvc' || 'aarch64-apple-darwin' }}

- name: Check TypeScript types
if: ${{ matrix.os == 'ubuntu-latest' }}
if: ${{ matrix.os == 'namespace-profile-linux-x64-default' }}
run: pnpm tsgo

- name: Install Global CLI vp
Expand Down Expand Up @@ -577,7 +577,7 @@ jobs:
name: Local CLI `vp install` E2E test
needs:
- download-previous-rolldown-binaries
runs-on: ubuntu-latest
runs-on: namespace-profile-linux-x64-default
# Run if: not a PR, OR PR has 'test: install-e2e' label
if: >-
github.event_name != 'pull_request' ||
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,3 +204,7 @@ Or, if you are using Yarn:
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
}
```

## Sponsors

Thanks to [namespace.so](https://namespace.so) for powering our CI/CD pipelines with fast, free macOS and Linux runners.
4 changes: 4 additions & 0 deletions packages/cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,3 +202,7 @@ Or, if you are using Yarn:
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
}
```

## Sponsors

Thanks to [namespace.so](https://namespace.so) for powering our CI/CD pipelines with fast, free macOS and Linux runners.
Loading