I\'d like to use GitLab CI with the .gitlab-ci.yml file to run different stages with separate scripts. The first stage produces a tool that must be used in a later stage to
Use dependencies. With this config test stage will download the untracked files that were created during the build stage:
build: stage: build artifacts: untracked: true script: - ./Build.ps1 test: stage: test dependencies: - build script: - ./Test.ps1