Some of the CI jobs fail because of missing Python deps, e.g., https://github.com/GambitBSM/gambit/actions/runs/13601337841/job/38027844094#step:5:8808. I wonder if we can add a step to the workflow, maybe around here,
|
- name: Set up build environment |
|
run: | |
|
echo "Set up the build environment" |
|
mkdir -p BUILD |
|
cd BUILD |
that does
pip install --user -r optional.txt
where optional is the file https://github.com/GambitBSM/gambit/blob/master/optional.txt. I'm not sure though because these CI jobs are on our runners and I don't know the setup. The advantage here is that anyone can fix these kinds of issues by adding to the optional.txt file.
Some of the CI jobs fail because of missing Python deps, e.g., https://github.com/GambitBSM/gambit/actions/runs/13601337841/job/38027844094#step:5:8808. I wonder if we can add a step to the workflow, maybe around here,
gambit/.github/workflows/ci_linux.yml
Lines 24 to 28 in 8f1a9da
that does
where optional is the file https://github.com/GambitBSM/gambit/blob/master/optional.txt. I'm not sure though because these CI jobs are on our runners and I don't know the setup. The advantage here is that anyone can fix these kinds of issues by adding to the optional.txt file.