Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Godzie44/rustc 1.84 #58

Merged
merged 3 commits into from
Jan 11, 2025
Merged
Changes from 1 commit
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
Next Next commit
fix(ci): update python version from 3.7 to 3.13
  • Loading branch information
godzie44 committed Jan 11, 2025
commit 4d52c02b9ef6610b1bec42182484140b781edcb9
17 changes: 11 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,23 @@ jobs:
toolchain: 1.83.0
override: true
components: rustfmt, clippy
- name: Set up Python 3.7
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: '3.13'
- name: Install pip and test dependencies
run: |
sudo apt-get update
sudo apt-get install -y python3-pip
if [ -f requirements.txt ]; then sudo pip install -r requirements.txt; fi
- name: Verify installation
run: |
python --version
pip --version
- name: Install libunwind and debug symbols
run: |
sudo apt-get update
sudo apt-get install libunwind-dev libc6-dbg
- name: Install test dependencies
run: |
sudo python -m pip install --upgrade pip
if [ -f requirements.txt ]; then sudo pip install -r requirements.txt; fi
- name: Build debugger and test programs
run: make build-all
- name: Run integration tests
Expand Down