Skip to content
Snippets Groups Projects
Commit 2a5a8df8 authored by Graeme Stewart's avatar Graeme Stewart
Browse files

Merge branch 'make_script_executable' into 'master'

make sweeping script executable and install it

See merge request !1135
parents 864f13e0 2f84c2d4
No related branches found
No related tags found
No related merge requests found
...@@ -7,3 +7,6 @@ atlas_subdir( CI ) ...@@ -7,3 +7,6 @@ atlas_subdir( CI )
add_test (NAME DomainMapTests COMMAND python -m test.test_domain_map WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) add_test (NAME DomainMapTests COMMAND python -m test.test_domain_map WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
add_test (NAME WatchListTests COMMAND python -m test.test_watch_list WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) add_test (NAME WatchListTests COMMAND python -m test.test_watch_list WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
set_property (TEST DomainMapTests WatchListTests APPEND PROPERTY LABELS CI) set_property (TEST DomainMapTests WatchListTests APPEND PROPERTY LABELS CI)
# install executables
atlas_install_scripts( sweep_MR.py )
CI/sweep_MR.py 100644 → 100755
#!/usr/bin/env python
import argparse, gitlab, logging, os, re, subprocess, sys, yaml import argparse, gitlab, logging, os, re, subprocess, sys, yaml
from gitlab.exceptions import GitlabGetError, GitlabCreateError, GitlabCherryPickError from gitlab.exceptions import GitlabGetError, GitlabCreateError, GitlabCherryPickError
from gitlab_mr_helpers import list_changed_packages from gitlab_mr_helpers import list_changed_packages
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment