Skip to content

Commit

Permalink
bug: fix gitlab config file build issue (devblackops#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
jimbrig committed Mar 26, 2023
1 parent 9855905 commit 13e1b87
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Stucco/plasterManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ Creating an opinionated high-quality PowerShell module with psake tasks and GitH
destination='.github/workflows/CI.yaml'
condition="$PLASTER_PARAM_CICD -eq 'GitHubActions'"/>
<templateFile
source='template/cicd/.gitlab-ci.yml'
source='template/cicd/gitlab-ci.yml'
destination='.gitlab-ci.yml'
condition="$PLASTER_PARAM_CICD -eq 'GitLabCI'"/>
<templateFile
Expand Down
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\.$/'

0 comments on commit 13e1b87

Please sign in to comment.