Python based REPL for debugger #887
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
permissions: | |
contents: read | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
schedule: | |
- cron: '7 7 * * *' | |
# Spend CI time only on latest ref: https://github.com/jonhoo/rust-ci-conf/pull/5 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
env: | |
RUST_LOG: "debugger=debug,gui=debug,transport=debug,end_to_end=trace" | |
name: rolling | |
jobs: | |
# https://twitter.com/mycoliza/status/1571295690063753218 | |
nightly: | |
runs-on: ubuntu-latest | |
name: ubuntu / nightly | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: "^1.21.5" | |
- name: Install delve | |
run: | | |
go install github.com/go-delve/delve/cmd/dlv@latest | |
- name: Install nightly | |
uses: dtolnay/rust-toolchain@nightly | |
- uses: rui314/setup-mold@v1 | |
- uses: Swatinem/rust-cache@v2 | |
- name: cargo generate-lockfile | |
if: hashFiles('Cargo.lock') == '' | |
run: cargo generate-lockfile | |
- name: Create python venv with debugpy | |
run: | | |
python -m venv .venv | |
.venv/bin/python -m pip install debugpy | |
- name: cargo test --locked | |
run: | | |
source .venv/bin/activate | |
cargo test --locked --all-features --all-targets | |
# https://twitter.com/alcuadrado/status/1571291687837732873 | |
update: | |
runs-on: ubuntu-latest | |
name: ubuntu / beta / updated | |
# There's no point running this if no Cargo.lock was checked in in the | |
# first place, since we'd just redo what happened in the regular test job. | |
# Unfortunately, hashFiles only works in if on steps, so we reepeat it. | |
# if: hashFiles('Cargo.lock') != '' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: "^1.21.5" | |
- name: Install delve | |
run: | | |
go install github.com/go-delve/delve/cmd/dlv@latest | |
- name: Install beta | |
if: hashFiles('Cargo.lock') != '' | |
uses: dtolnay/rust-toolchain@beta | |
- uses: rui314/setup-mold@v1 | |
- uses: Swatinem/rust-cache@v2 | |
- name: cargo update | |
if: hashFiles('Cargo.lock') != '' | |
run: cargo update | |
- name: Create python venv with debugpy | |
run: | | |
python -m venv .venv | |
.venv/bin/python -m pip install debugpy | |
- name: cargo test | |
if: hashFiles('Cargo.lock') != '' | |
run: | | |
source .venv/bin/activate | |
cargo test --locked --all-features --all-targets | |
env: | |
RUSTFLAGS: -D deprecated |