Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
95 changes: 95 additions & 0 deletions .github/actions/test/linux-packaging/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
name: linux_packaging
description: 'Test very basic Linux packaging'

# This isn't working yet
# It fails with

# ERROR: While executing gem ... (Gem::FilePermissionError)
# You don't have write permissions for the /var/lib/gems/2.7.0 directory.
# WARNING: Installation of gem dotenv 2.8.1 failed! Must resolve manually.

runs:
using: composite
steps:
- name: Capture Environment
if: success() || failure()
run: 'Get-ChildItem -Path env: | Out-String -width 9999 -Stream | write-Verbose -Verbose'
shell: pwsh
- name: Download Build Artifacts
uses: actions/download-artifact@v4
with:
path: "${{ github.workspace }}"
- name: Capture Artifacts Directory
continue-on-error: true
run: Get-ChildItem "${{ github.workspace }}/build/*" -Recurse
shell: pwsh

- name: Bootstrap
run: |-
Import-Module ./build.psm1
Start-PSBootstrap -Package
shell: pwsh
- name: Capture Artifacts Directory
continue-on-error: true
run: Import-Module ./build.psm1
shell: pwsh
- name: Extract Files
uses: actions/github-script@v7.0.0
env:
DESTINATION_FOLDER: "${{ github.workspace }}/bins"
ARCHIVE_FILE_PATTERNS: "${{ github.workspace }}/build/build.zip"
with:
script: |-
const fs = require('fs').promises
const path = require('path')
const target = path.resolve(process.env.DESTINATION_FOLDER)
const patterns = process.env.ARCHIVE_FILE_PATTERNS
const globber = await glob.create(patterns)
await io.mkdirP(path.dirname(target))
for await (const file of globber.globGenerator()) {
if ((await fs.lstat(file)).isDirectory()) continue
await exec.exec(`7z x ${file} -o${target} -aoa`)
}
- name: Fix permissions
continue-on-error: true
run: |-
find "${{ github.workspace }}/bins" -type d -exec chmod +rwx {} \;
find "${{ github.workspace }}/bins" -type f -exec chmod +rw {} \;
shell: bash
- name: Capture Extracted Build ZIP
continue-on-error: true
run: Get-ChildItem "${{ github.workspace }}/bins/*" -Recurse -ErrorAction SilentlyContinue
shell: pwsh
- name: Packaging Tests
if: success()
run: |-
Import-Module ./tools/ci.psm1
Restore-PSOptions -PSOptionsPath '${{ github.workspace }}/build/psoptions.json'
$options = (Get-PSOptions)
$rootPath = '${{ github.workspace }}/bins'
$originalRootPath = Split-Path -path $options.Output
$path = Join-Path -path $rootPath -ChildPath (split-path -leaf -path $originalRootPath)
$pwshPath = Join-Path -path $path -ChildPath 'pwsh'
chmod a+x $pwshPath
$options.Output = $pwshPath
Set-PSOptions $options
Invoke-CIFinish
shell: pwsh
- name: Upload packages
run: |-
Get-ChildItem "${env:BUILD_ARTIFACTSTAGINGDIRECTORY}/*.deb" -Recurse | ForEach-Object {
$packagePath = $_.FullName
Write-Host "Uploading $packagePath"
Write-Host "##vso[artifact.upload containerfolder=deb;artifactname=deb]$packagePath"
}
Get-ChildItem "${env:BUILD_ARTIFACTSTAGINGDIRECTORY}/*.rpm" -Recurse | ForEach-Object {
$packagePath = $_.FullName
Write-Host "Uploading $packagePath"
Write-Host "##vso[artifact.upload containerfolder=rpm;artifactname=rpm]$packagePath"
}
Get-ChildItem "${env:BUILD_ARTIFACTSTAGINGDIRECTORY}/*.tar.gz" -Recurse | ForEach-Object {
$packagePath = $_.FullName
Write-Host "Uploading $packagePath"
Write-Host "##vso[artifact.upload containerfolder=rpm;artifactname=rpm]$packagePath"
}
shell: pwsh
91 changes: 91 additions & 0 deletions .github/actions/test/nix/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
name: nix_test
description: 'Test PowerShell on non-Windows platforms'

inputs:
purpose:
required: false
default: ''
type: string
tagSet:
required: false
default: CI
type: string
ctrfFolder:
required: false
default: ctrf
type: string

runs:
using: composite
steps:
- name: Capture Environment
if: success() || failure()
run: 'Get-ChildItem -Path env: | Out-String -width 9999 -Stream | write-Verbose -Verbose'
shell: pwsh
- name: Download Build Artifacts
uses: actions/download-artifact@v4
with:
path: "${{ github.workspace }}"
- name: Capture Artifacts Directory
continue-on-error: true
run: Get-ChildItem "${{ github.workspace }}/build/*" -Recurse
shell: pwsh

- name: Bootstrap
shell: pwsh
run: |-
Import-Module ./tools/ci.psm1
Invoke-CIInstall -SkipUser

- name: Extract Files
uses: actions/github-script@v7.0.0
env:
DESTINATION_FOLDER: "${{ github.workspace }}/bins"
ARCHIVE_FILE_PATTERNS: "${{ github.workspace }}/build/build.zip"
with:
script: |-
const fs = require('fs').promises
const path = require('path')
const target = path.resolve(process.env.DESTINATION_FOLDER)
const patterns = process.env.ARCHIVE_FILE_PATTERNS
const globber = await glob.create(patterns)
await io.mkdirP(path.dirname(target))
for await (const file of globber.globGenerator()) {
if ((await fs.lstat(file)).isDirectory()) continue
await exec.exec(`7z x ${file} -o${target} -aoa`)
}

- name: Fix permissions
continue-on-error: true
run: |-
find "${{ github.workspace }}/bins" -type d -exec chmod +rwx {} \;
find "${{ github.workspace }}/bins" -type f -exec chmod +rw {} \;
shell: bash

- name: Capture Extracted Build ZIP
continue-on-error: true
run: Get-ChildItem "${{ github.workspace }}/bins/*" -Recurse -ErrorAction SilentlyContinue
shell: pwsh

- name: Test
if: success()
run: |-
Import-Module ./tools/ci.psm1
Restore-PSOptions -PSOptionsPath '${{ github.workspace }}/build/psoptions.json'
$options = (Get-PSOptions)
$rootPath = '${{ github.workspace }}/bins'
$originalRootPath = Split-Path -path $options.Output
$path = Join-Path -path $rootPath -ChildPath (split-path -leaf -path $originalRootPath)
$pwshPath = Join-Path -path $path -ChildPath 'pwsh'
chmod a+x $pwshPath
$options.Output = $pwshPath
Set-PSOptions $options
Invoke-CITest -Purpose '${{ inputs.purpose }}' -TagSet '${{ inputs.tagSet }}' -TitlePrefix '${{ inputs.buildName }}' -OutputFormat JUnitXml
shell: pwsh

- name: Convert, Publish, and Upload Pester Test Results
uses: "./.github/actions/test/process-pester-results"
with:
name: "${{ inputs.purpose }}-${{ inputs.tagSet }}"
testResultsFolder: "${{ runner.workspace }}/testResults"
ctrfFolder: "${{ inputs.ctrfFolder }}"
64 changes: 64 additions & 0 deletions .github/actions/test/process-pester-results/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
name: process-pester-test-results
description: 'Process Pester test results'

inputs:
name:
required: true
default: ''
type: string
testResultsFolder:
required: false
default: "${{ runner.workspace }}/testResults"
type: string
ctrfFolder:
required: false
default: ctrf
type: string

runs:
using: composite
steps:
- name: Convert JUnit to CTRF
run: |-
Get-ChildItem -Path "${{ inputs.testResultsFolder }}/*.xml" -Recurse | ForEach-Object {
npx --yes junit-to-ctrf $_.FullName --output ./${{ inputs.ctrfFolder }}/$($_.BaseName).json --tool Pester
}
shell: pwsh

# this task only takes / as directory separators
- name: Publish Test Report
uses: ctrf-io/github-test-reporter@v1
with:
report-path: './${{ inputs.ctrfFolder }}/*.json'
exit-on-fail: true
summary-report: true
test-report: false
test-list-report: false
failed-report: false
fail-rate-report: false
flaky-report: false
flaky-rate-report: false
failed-folded-report: true
previous-results-report: false
ai-report: true
skipped-report: false
suite-folded-report: false
suite-list-report: false
pull-request-report: false
commit-report: false
custom-report: false
if: always()

- name: Upload testResults artifact
if: always()
uses: actions/upload-artifact@v4
with:
name: junit-pester-${{ inputs.name }}
path: ${{ runner.workspace }}/testResults

- name: Upload ctrf artifact
if: always()
uses: actions/upload-artifact@v4
with:
name: ctrf-pester-${{ inputs.name }}
path: ${{ inputs.ctrfFolder }}
49 changes: 5 additions & 44 deletions .github/actions/test/windows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,48 +60,9 @@ runs:
Invoke-CITest -Purpose '${{ inputs.purpose }}' -TagSet '${{ inputs.tagSet }}' -OutputFormat JUnitXml
shell: pwsh

- name: Convert JUnit to CTRF
run: |-
Get-ChildItem -Path "${{ runner.workspace }}/testResults/*.xml" -Recurse | ForEach-Object {
npx --yes junit-to-ctrf $_.FullName --output .\${{ inputs.ctrfFolder }}\$($_.BaseName).json --tool Pester --env 'Windows ${{ inputs.purpose }} ${{ inputs.tagSet }}'
}
shell: powershell

# this task only takes / as directory separators
- name: Publish Test Report
uses: ctrf-io/github-test-reporter@v1
with:
report-path: './${{ inputs.ctrfFolder }}/*.json'
exit-on-fail: true
summary-report: true
test-report: false
test-list-report: false
failed-report: false
fail-rate-report: false
flaky-report: false
flaky-rate-report: false
failed-folded-report: true
previous-results-report: false
ai-report: true
skipped-report: false
suite-folded-report: false
suite-list-report: false
pull-request-report: false
commit-report: false
custom-report: false

if: always()

- name: Upload testResults artifact
if: always()
uses: actions/upload-artifact@v4
with:
name: junit-pester-${{ inputs.purpose }}-${{ inputs.tagSet }}
path: ${{ runner.workspace }}\testResults

- name: Upload ctrf artifact
if: always()
uses: actions/upload-artifact@v4
- name: Convert, Publish, and Upload Pester Test Results
uses: "./.github/actions/test/process-pester-results"
with:
name: ctrf-pester-${{ inputs.purpose }}-${{ inputs.tagSet }}
path: ${{ inputs.ctrfFolder }}
name: "${{ inputs.purpose }}-${{ inputs.tagSet }}"
testResultsFolder: ${{ runner.workspace }}\testResults
ctrfFolder: "${{ inputs.ctrfFolder }}"
Loading