Skip to content

Commit

Permalink
CI: set CYTHON explicitly on ubuntu/debian
Browse files Browse the repository at this point in the history
  • Loading branch information
tschoonj committed Aug 10, 2024
1 parent e80bab6 commit 12e2693
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,17 +119,17 @@ jobs:
- meson
compiler:
- llvm
- gcc@13
- gcc@14
include:
- ldflags: "-Wl,-ld_classic"
- compiler: llvm
cc: /opt/homebrew/opt/llvm/bin/clang
cxx: /opt/homebrew/opt/llvm/bin/clang++
# ldflags: -L/opt/homebrew/opt/llvm/lib
enable_ruby: enable
- compiler: gcc@13
cc: gcc-13
cxx: g++-13
- compiler: gcc@14
cc: gcc-14
cxx: g++-14
# -fdeclspec is only supported by llvm's clang!
enable_ruby: disable
steps:
Expand Down Expand Up @@ -309,6 +309,8 @@ jobs:
set -ex
apt-get --yes --force-yes update
apt-get --yes --force-yes install autoconf automake libtool python3-pip python3-all-dev python3-numpy cython3 fpc gfortran gcc swig lua5.3 liblua5.3-dev ruby-dev default-jdk clang
# ensure cython3 is used on debian and ubuntu with old versions of meson
echo "CYTHON=cython3" >> $GITHUB_ENV
set +ex
env:
DEBIAN_FRONTEND: noninteractive
Expand Down

0 comments on commit 12e2693

Please sign in to comment.