Skip to content

Commit a1d9d87

Browse files
committed
Do not reload test projects on non test systems
We do not have access to the import, so if we delete the test projects they will not get reloaded
1 parent f557f15 commit a1d9d87

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

config/deploy.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353

5454
desc "Reload the test fixture projects from Mediaflux"
5555
task :reload_test_projects do
56-
on roles(:rake) do
56+
on roles(:test) do
5757
within release_path do
5858
execute :rake, "projects:rebuild_test_projects"
5959
end

config/deploy/ci.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# Defines a single server with a list of roles and multiple properties.
55
# You can define all roles on a single server, or split them:
66

7-
server "tigerdata-ci1.lib.princeton.edu", user: "deploy", roles: %w[app db web rake schema]
7+
server "tigerdata-ci1.lib.princeton.edu", user: "deploy", roles: %w[app db web rake schema test]

config/deploy/qa.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
# Defines a single server with a list of roles and multiple properties.
55
# You can define all roles on a single server, or split them:
66

7-
server "tigerdata-qa1.princeton.edu", user: "deploy", roles: %w[app db web rake schema]
7+
server "tigerdata-qa1.princeton.edu", user: "deploy", roles: %w[app db web rake schema test]
88
server "tigerdata-qa2.princeton.edu", user: "deploy", roles: %w[app db web]

0 commit comments

Comments
 (0)