Skip to content
Closed
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/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ env:
jobs:
benchmark:
name: Performance regression check
runs-on: ubuntu-latest
runs-on: ubicloud-standard-2
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/changelog-policy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ permissions:
jobs:
advisory:
name: Advisory changelog check
runs-on: ubuntu-latest
runs-on: ubicloud-standard-2
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ env:
jobs:
changes:
name: Detect CI scope
runs-on: ubuntu-latest
runs-on: ubicloud-standard-2
outputs:
code: ${{ steps.scope.outputs.code }}
steps:
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:

audit:
name: Supply-chain audit
runs-on: ubuntu-latest
runs-on: ubicloud-standard-2
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:

build:
name: Build release cdylib (linux)
runs-on: ubuntu-latest
runs-on: ubicloud-standard-2
needs: changes
if: github.event_name != 'pull_request' || needs.changes.outputs.code == 'true'
steps:
Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:
if: github.event_name != 'pull_request' || needs.changes.outputs.code == 'true'
strategy:
matrix:
os: [ubuntu-latest, macos-14]
os: [ubicloud-standard-2, macos-14]
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -218,11 +218,11 @@ jobs:
run: cargo test --release --no-default-features

- name: Test debug scalar-only
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubicloud-standard-2'
run: cargo test --no-default-features

- name: Test with test-panic feature
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubicloud-standard-2'
run: cargo test --features test-panic --release

- name: Install LuaJIT for package validation
Expand Down Expand Up @@ -251,7 +251,7 @@ jobs:

lua-lint:
name: Lua lint
runs-on: ubuntu-latest
runs-on: ubicloud-standard-2
needs: changes
if: github.event_name != 'pull_request' || needs.changes.outputs.code == 'true'
steps:
Expand All @@ -271,7 +271,7 @@ jobs:

fuzz:
name: Fuzz corpus replay
runs-on: ubuntu-latest
runs-on: ubicloud-standard-2
needs: changes
if: github.event_name != 'pull_request' || needs.changes.outputs.code == 'true'
steps:
Expand Down Expand Up @@ -310,7 +310,7 @@ jobs:

sanitizers:
name: Sanitizers (Rust nightly)
runs-on: ubuntu-latest
runs-on: ubicloud-standard-2
needs: changes
if: github.event_name != 'pull_request' || needs.changes.outputs.code == 'true'
steps:
Expand Down Expand Up @@ -367,7 +367,7 @@ jobs:

lua:
name: Lua integration tests (${{ matrix.runtime.name }})
runs-on: ubuntu-latest
runs-on: ubicloud-standard-2
needs: build
strategy:
fail-fast: false
Expand Down Expand Up @@ -431,7 +431,7 @@ jobs:

lua-valgrind:
name: Lua valgrind memcheck (upstream LuaJIT)
runs-on: ubuntu-latest
runs-on: ubicloud-standard-2
needs: build
timeout-minutes: 10
steps:
Expand Down Expand Up @@ -494,7 +494,7 @@ jobs:

openresty:
name: OpenResty runtime (${{ matrix.openresty.version }})
runs-on: ubuntu-22.04
runs-on: ubicloud-standard-2-ubuntu-2204
needs: build
permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ env:
jobs:
fuzz:
name: Timed fuzzing
runs-on: ubuntu-latest
runs-on: ubicloud-standard-2
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lua-lazy-mutation-property.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ env:
jobs:
lua-mutation-property:
name: Lazy mutation property suite
runs-on: ubuntu-latest
runs-on: ubicloud-standard-2
permissions:
contents: read
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lua-valgrind-full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:
jobs:
lua-valgrind-full:
name: Full Lua valgrind memcheck
runs-on: ubuntu-latest
runs-on: ubicloud-standard-2
timeout-minutes: 120
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ permissions:
jobs:
release:
name: Release
runs-on: ubuntu-latest
runs-on: ubicloud-standard-2
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/supply-chain-audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:
jobs:
audit:
name: Supply-chain audit
runs-on: ubuntu-latest
runs-on: ubicloud-standard-2
steps:
- uses: actions/checkout@v4

Expand Down
Loading