Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cython
Commits
1eac3022
Commit
1eac3022
authored
May 25, 2021
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid compiling Cython and installing gcc etc. in code style CI job since if's not used there.
parent
c1b946d0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
.github/workflows/ci.yml
.github/workflows/ci.yml
+1
-1
Tools/ci-run.sh
Tools/ci-run.sh
+1
-1
No files found.
.github/workflows/ci.yml
View file @
1eac3022
...
...
@@ -38,7 +38,7 @@ jobs:
-
os
:
ubuntu-18.04
python-version
:
3.7
backend
:
"
c,cpp"
env
:
{
TEST_CODE_STYLE
:
1
}
env
:
{
TEST_CODE_STYLE
:
1
,
NO_CYTHON_COMPILE
:
1
}
extra_hash
:
"
-codestyle"
# Limited API
-
os
:
ubuntu-18.04
...
...
Tools/ci-run.sh
View file @
1eac3022
#!/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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment