forked from devblackops/Stucco
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bug: fix gitlab config file build issue (devblackops#36)
- Loading branch information
Showing
2 changed files
with
14 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 13 additions & 13 deletions
26
Stucco/template/cicd/.gitlab-ci.yml → Stucco/template/cicd/gitlab-ci.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
image: mcr.microsoft.com/powershell:latest | ||
before_script: | ||
- DEBIAN_FRONTEND=noninteractive | ||
- apt-get update -qq && apt-get install -yqq git > /dev/null | ||
stages: | ||
- test | ||
tests: | ||
stage: test | ||
script: | ||
- pwsh -command './build.ps1 -Task Test -Bootstrap -Verbose' | ||
except: | ||
- /updated readme.*|update readme.*s/ | ||
coverage: '/^Covered (\d+.\d+\%) of \d+ analyzed Commands in \d+ Files\.$/' | ||
image: mcr.microsoft.com/powershell:latest | ||
before_script: | ||
- DEBIAN_FRONTEND=noninteractive | ||
- apt-get update -qq && apt-get install -yqq git > /dev/null | ||
stages: | ||
- test | ||
tests: | ||
stage: test | ||
script: | ||
- pwsh -command './build.ps1 -Task Test -Bootstrap -Verbose' | ||
except: | ||
- /updated readme.*|update readme.*s/ | ||
coverage: '/^Covered (\d+.\d+\%) of \d+ analyzed Commands in \d+ Files\.$/' |