
In response to an ongoing BuildJet outage, consider migrating CI to GitHub hosted runners. Also includes revert of (causing flaky tests): - https://github.com/zed-industries/zed/pull/35741 Downsides: - Cost (2x) - Force migration to Ubuntu 22.04 from 20.04 will bump our glibc minimum from 2.31 to 2.35. Which would break RHEL 9.x (glibc 2.34), Ubuntu 20.04 (EOL) and derivatives. Release Notes: - N/A
36 lines
788 B
YAML
36 lines
788 B
YAML
name: Randomized Tests
|
|
|
|
concurrency: randomized-tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- randomized-tests-runner
|
|
# schedule:
|
|
# - cron: '0 * * * *'
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
CARGO_INCREMENTAL: 0
|
|
RUST_BACKTRACE: 1
|
|
ZED_SERVER_URL: https://zed.dev
|
|
|
|
jobs:
|
|
tests:
|
|
name: Run randomized tests
|
|
if: github.repository_owner == 'zed-industries'
|
|
runs-on:
|
|
- github-16vcpu-ubuntu-2204
|
|
steps:
|
|
- name: Install Node
|
|
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
|
|
with:
|
|
node-version: "18"
|
|
|
|
- name: Checkout repo
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
with:
|
|
clean: false
|
|
|
|
- name: Run randomized tests
|
|
run: script/randomized-test-ci
|