Skip to content

Commit 06941b9

Browse files
committed
fixes for ci
1 parent aa88d6e commit 06941b9

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,19 @@ jobs:
1919
- name: Install arm-none-eabi-gcc
2020
uses: carlosperate/arm-none-eabi-gcc-action@v1
2121

22+
- name: Set up Python
23+
uses: actions/setup-python@v5
24+
with:
25+
python-version: '3.11'
26+
27+
- name: Install virtualenv
28+
run: pip install virtualenv
29+
2230
- name: Configure
2331
run: ./configure --enable-O2 --enable-asan
2432

2533
- name: Build and test
26-
run: make test -j$(nproc)
34+
run: |
35+
virtualenv .venv
36+
source .venv/bin/activate
37+
make test -j$(nproc)

0 commit comments

Comments
 (0)