Skip to content

Commit

Permalink
[ci tests] add default values, only install python-full for 24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
hugsy committed Jul 27, 2024
1 parent 7cb9253 commit 311b387
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
name: CI Test for GEF
name: Tests

env:
GEF_CI_CACHE_DIR: /tmp
PY_VER: 0
GEF_CI_NB_CPU: 1

on:
push:
Expand Down Expand Up @@ -31,7 +36,12 @@ jobs:
run: |
export NEEDRESTART_MODE=n
sudo apt-get update
sudo apt-get install -y gdb-multiarch python3-full python3-dev python3-pip python3-wheel python3-setuptools git cmake gcc g++ pkg-config libglib2.0-dev gdbserver qemu-user
sudo apt-get install -y gdb-multiarch python3-dev python3-pip python3-wheel python3-setuptools git cmake gcc g++ pkg-config libglib2.0-dev gdbserver qemu-user
- name: Install python and toolchain
if: ${{ runner.os }} == 'ubuntu-24.04'
run: |
sudo apt-get install -y python3-full
- name: Set runtime environment variables
run: |
Expand Down

0 comments on commit 311b387

Please sign in to comment.