Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
f37860d3
Commit
f37860d3
authored
Aug 07, 2015
by
Jesse Zoldak
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #9220 from jzoldak/zoldak/circle-noprereq
No need to install prereqs twice on circleci.com
parents
24bca27b
f8766891
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
pavelib/prereqs.py
+4
-0
scripts/circle-ci-tests.sh
+4
-0
No files found.
pavelib/prereqs.py
View file @
f37860d3
...
...
@@ -11,6 +11,10 @@ from .utils.envs import Env
PREREQS_MD5_DIR
=
os
.
getenv
(
'PREREQ_CACHE_DIR'
,
Env
.
REPO_ROOT
/
'.prereqs_cache'
)
NPM_REGISTRY
=
"http://registry.npmjs.org/"
# If you make any changes to this list you also need to make
# a corresponding change to circle.yml, which is how the python
# prerequisites are installed for builds on circleci.com
PYTHON_REQ_FILES
=
[
'requirements/edx/pre.txt'
,
'requirements/edx/github.txt'
,
...
...
scripts/circle-ci-tests.sh
View file @
f37860d3
...
...
@@ -25,6 +25,10 @@ set -e
# piped command, or a zero if they all succeed.
set
-o
pipefail
# There is no need to install the prereqs, as this was already
# just done via the dependencies override section of circle.yml.
export
NO_PREREQ_INSTALL
=
'true'
EXIT
=
0
case
$CIRCLE_NODE_INDEX
in
...
...
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