aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Rendina <rendinam@users.noreply.github.com>2018-07-25 12:24:45 -0400
committerGitHub <noreply@github.com>2018-07-25 12:24:45 -0400
commitf34beb6fcd518fb177ec7b9ea99ae631acae70bc (patch)
tree9325857fca2573969e66e0d499b2649b0f744e24
parent9e27561a5ac7eab6893a7cbacc68977ab6cb4abb (diff)
downloadjscu_refactor-f34beb6fcd518fb177ec7b9ea99ae631acae70bc.tar.gz
Change `build_mode` to `name` in docs.
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 09aa53b..06a6e2a 100644
--- a/README.md
+++ b/README.md
@@ -28,7 +28,7 @@ configure_cmd = "yes '' | ./waf configure --prefix=./_install ${DEFAULT_FLAGS}"
// Define each build configuration, copying and overriding values as necessary.
bc0 = new BuildConfig()
bc0.nodetype = "linux-stable"
-bc0.build_mode = "debug"
+bc0.name = "debug"
bc0.env_vars = ['PATH=./_install/bin:$PATH']
bc0.build_cmds = ["${configure_cmd} --debug",
"./waf build",
@@ -36,7 +36,7 @@ bc0.build_cmds = ["${configure_cmd} --debug",
bc1 = utils.copy(bc0)
-bc1.build_mode = "release"
+bc1.name = "release"
bc1.build_cmds[0] = "${configure_cmd} --release-with-symbols"
bc1.test_cmds = ["conda install -q -y pytest requests astropy",
"pip install -q pytest-remotedata",
@@ -46,7 +46,7 @@ bc1.failedFailureThresh = 6
bc2 = utils.copy(bc0)
-bc2.build_mode = "optimized"
+bc2.name = "optimized"
bc2.build_cmds[0] = "${configure_cmd} --O3"