Skip to content

Commit

Permalink
ci: Use Fedora 41, drop Fedora 39
Browse files Browse the repository at this point in the history
Fedora 41 is released, and Fedora 39 will soon be unsupported

Signed-off-by: Rich Megginson <[email protected]>
  • Loading branch information
dependabot[bot] authored and richm committed Dec 2, 2024
1 parent dbd3562 commit df0d167
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/python-unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ jobs:
if [ "x${{ matrix.pcs_version }}" == "xmain" ]; then
echo "0.0.1+ci" > .tarball-version
fi
./autogen.sh && ./configure --prefix "$pcs_dir" && make && make install
# pip adds "/local" so ensure make looks in the right directory when installing
./autogen.sh && ./configure --prefix "$pcs_dir" && make && make prefix="$pcs_dir/local" install
cd ..
rm -rf pcs-upstream
site_pkgs_dir=`python -m site --user-site`
Expand All @@ -96,4 +97,4 @@ jobs:
TOXENV="$toxenvs" lsr_ci_runtox
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5

0 comments on commit df0d167

Please sign in to comment.