summaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2021-05-25 12:35:14 +0200
committerStefan Behnel <stefan_ml@behnel.de>2021-05-25 12:38:08 +0200
commit1eac3022a3b304ad673f35eb353c15a1f10728d7 (patch)
treec500c0cedd134eff7734b08e568cf460b9537e5e /Tools
parentc1b946d01f9c285bf958064d3c350e9911d49655 (diff)
downloadcython-1eac3022a3b304ad673f35eb353c15a1f10728d7.tar.gz
Avoid compiling Cython and installing gcc etc. in code style CI job since if's not used there.
Diffstat (limited to 'Tools')
-rw-r--r--Tools/ci-run.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/ci-run.sh b/Tools/ci-run.sh
index c5c00e15e..b3a0323db 100644
--- a/Tools/ci-run.sh
+++ b/Tools/ci-run.sh
@@ -1,7 +1,7 @@
#!/usr/bin/bash
# Set up compilers
-if [ "${OS_NAME##ubuntu*}" == "" ]; then
+if [ "${OS_NAME##ubuntu*}" == "" - "$TEST_CODE_STYLE" != "1" ]; then
echo "Installing requirements [apt]"
sudo apt-add-repository -y "ppa:ubuntu-toolchain-r/test"
sudo apt update -y -q