Change Vagrant with docker for building Debian
Merge request reports
Activity
added 2 commits
added 2 commits
added 2 commits
added 17 commits
-
3d36d961...e843c8e0 - 16 commits from branch
1.6
- f714ad83 - Merge branch '1.6' into 'DockerBuild'
-
3d36d961...e843c8e0 - 16 commits from branch
added 1 commit
- 9ff581ee - add release-message job & move tests before releases & create build job
- .gitlab/releaser.py 0 → 100644
82 expected_artifacts = json.loads(expected_artifacts) 83 except json.decoder.JSONDecodeError: 84 print('CRITICAL EXPECTED_ARTIFACTS environment variable JSON probably malformed') 85 print('CRITICAL Correct : \'["test_linux.txt","test_windows.txt"]\' ') 86 print('CRITICAL Not Correct: "[\'test_linux.txt\',\'test_windows.txt\']" ') 87 exit(1) 88 artifacts_list = [] 89 for artifact in expected_artifacts: 90 artifact_dict = { 91 'name': artifact, 92 'url': build_artifact_url(artifact, False), 93 'size': get_artifact_weight(artifact), 94 'icon': ':package:' 95 } 96 artifacts_list.append(artifact_dict) 97 expected_sources = ['tar.gz', 'zip']
Please register or sign in to reply