necessary changes for spica upgrade #4135
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
name: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
format_tests: | |
name: LLDB formatter tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
default: true | |
toolchain: stable | |
- name: Download vscode-lldb | |
uses: robinraju/[email protected] | |
with: | |
repository: vadimcn/vscode-lldb | |
tag: v1.11.0 | |
fileName: codelldb-linux-x64.vsix | |
- name: Setup vscode-lldb | |
run: | | |
unzip codelldb-linux-x64.vsix -d vscode-lldb | |
mkdir -p $HOME/.vscode/extensions/vadimcn.vscode-lldb-1.11.0/ | |
mv vscode-lldb/extension/* $HOME/.vscode/extensions/vadimcn.vscode-lldb-1.11.0/ | |
- name: Run the rust tests | |
run: | | |
cd tools/rust-debugger/format-tests | |
cargo test |