Skip to content

Commit

Permalink
add some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
bam241 authored and gonuke committed Feb 15, 2019
1 parent 41680eb commit 602bb92
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
18 changes: 14 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
version: 2.1
# Executors part:
# Executors:
# Alias the environment on which run the different jobs
# i.e. in this case, docker image in which the jobs will be ran
executors:
py2:
docker:
Expand All @@ -19,10 +20,19 @@ executors:
- image: pyne/ubuntu_18.04_py3_pyne-deps:latest


# Commands part:
# Commands:
# Define macros that will be used to build and test PyNE.
# Save_container/pull_container macros are used to avoid repeting building PyNE
# for the testing jobs, it will only pull the saved container state...
# Save_container/pull_container:
# used to avoid repeting building PyNE for the testing jobs,
# it will only pull the saved container state...
#
# checkout_build:
# checkout the source code (usually the PR branch, and build
# PyNE, save the state of the container after the build
#
# run_test:
# load the PyNE build (built in checkout_build macro
# run the nose test
commands:
# Save Container change
save_container:
Expand Down
2 changes: 1 addition & 1 deletion docker/ubuntu_18.04-dev.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ RUN mkdir -p $HOME/opt
RUN echo "export PATH=$HOME/.local/bin:\$PATH" >> ~/.bashrc

# build MOAB
RUN if [ "$build_moab" = "YES" ] || [ "$build_dagmc" = "YES" ] || [ "$enable_pymoab" = "YES" ] ; then \
RUN if [ "$build_moab" = "YES" ] || [ "$enable_pymoab" = "YES" ] ; then \
if [ "$enable_pymoab" = "YES" ] ; \
then \
export PYMOAB_FLAG="-DENABLE_PYMOAB=ON"; \
Expand Down

0 comments on commit 602bb92

Please sign in to comment.