pull/74/head
gowridurgad 10 months ago
parent d07fdc2918
commit 14cb072177

@ -3,7 +3,6 @@
# - build and test new versions of a tool (Go, Node) # - build and test new versions of a tool (Go, Node)
# - publish a release with a new tool version # - publish a release with a new tool version
# The GITHUB_TOKEN secret is used to trigger workflow runs and publish releases # The GITHUB_TOKEN secret is used to trigger workflow runs and publish releases
name: Generate tool packages name: Generate tool packages
on: on:
workflow_call: workflow_call:
@ -20,11 +19,10 @@ on:
description: "Whether to publish releases" description: "Whether to publish releases"
required: true required: true
type: boolean type: boolean
defaults: defaults:
run: run:
shell: pwsh shell: pwsh
# Fix for windows arm64 7z file issue. More details at https://github.com/nodejs/node/issues/52231
jobs: jobs:
build: build:
name: Build ${{ inputs.tool-name }} ${{ inputs.tool-version }} [${{ matrix.platform }}] [${{ matrix.architecture }}] name: Build ${{ inputs.tool-name }} ${{ inputs.tool-version }} [${{ matrix.platform }}] [${{ matrix.architecture }}]
@ -34,27 +32,39 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
platform: [linux, darwin, win32] include:
architecture: [x64, arm64] - os: ubuntu-latest
platform: linux
architecture: x64
- os: ubuntu-latest
platform: darwin
architecture: x64
- os: ubuntu-latest
platform: win32
architecture: x64
- os: ubuntu-latest
platform: win32
architecture: arm64
- os: ubuntu-latest
platform: linux
architecture: arm64
- os: ubuntu-latest
platform: darwin
architecture: arm64
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:
submodules: true submodules: true
- name: Build ${{ inputs.tool-name }} ${{ inputs.tool-version }} - name: Build ${{ inputs.tool-name }} ${{ inputs.tool-version }}
run: | run: |
./builders/build-${{ inputs.tool-name }}.ps1 -Version ${{ inputs.tool-version }} ` ./builders/build-${{ inputs.tool-name }}.ps1 -Version ${{ inputs.tool-version }} `
-Platform ${{ matrix.platform }} ` -Platform ${{ matrix.platform }} `
-Architecture ${{ matrix.architecture }} -Architecture ${{ matrix.architecture }}
- name: Publish artifact - name: Publish artifact
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: ${{ env.ARTIFACT_NAME }} name: ${{ env.ARTIFACT_NAME }}
path: ${{ runner.temp }}/artifact path: ${{ runner.temp }}/artifact
test: test:
name: Test ${{ inputs.tool-name }} ${{ inputs.tool-version }} [${{ matrix.platform }}] name: Test ${{ inputs.tool-name }} ${{ inputs.tool-version }} [${{ matrix.platform }}]
needs: build needs: build
@ -68,35 +78,22 @@ jobs:
- os: ubuntu-latest - os: ubuntu-latest
platform: linux platform: linux
arch: x64 arch: x64
- os: ubuntu-latest
platform: linux
arch: arm64
- os: macos-latest - os: macos-latest
platform: darwin platform: darwin
arch: arm64 arch: arm64
- os: macos-13
platform: darwin
arch: x64
- os: windows-latest - os: windows-latest
platform: win32 platform: win32
arch: x64 arch: x64
- os: windows-latest
platform: win32
arch: arm64
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
with: with:
submodules: true submodules: true
- name: Fully cleanup the toolcache directory before testing - name: Fully cleanup the toolcache directory before testing
run: ./helpers/clean-toolcache.ps1 -ToolName "${{ inputs.tool-name }}" run: ./helpers/clean-toolcache.ps1 -ToolName "${{ inputs.tool-name }}"
- name: Download artifact - name: Download artifact
uses: actions/download-artifact@v3 uses: actions/download-artifact@v3
with: with:
path: ${{ runner.temp }} path: ${{ runner.temp }}
- name: Extract files - name: Extract files
run: | run: |
if ('${{ matrix.platform }}' -eq 'win32') { if ('${{ matrix.platform }}' -eq 'win32') {
@ -108,31 +105,26 @@ jobs:
Write-Host "Unsupported tool - ${{ inputs.tool-name }}" Write-Host "Unsupported tool - ${{ inputs.tool-name }}"
exit 1 exit 1
} }
7z.exe x "$artifactName" -y | Out-Null 7z.exe x "$artifactName" -y | Out-Null
} else { } else {
$artifactName = "${{ env.ARTIFACT_NAME }}.tar.gz" $artifactName = "${{ env.ARTIFACT_NAME }}.tar.gz"
tar -xzf $artifactName tar -xzf $artifactName
} }
working-directory: ${{ runner.temp }}/${{ env.ARTIFACT_NAME }} working-directory: ${{ runner.temp }}/${{ env.ARTIFACT_NAME }}
- name: Apply build artifact to the local machine - name: Apply build artifact to the local machine
run: | run: |
if ('${{ matrix.platform }}' -eq 'win32') { powershell ./setup.ps1 } else { sh ./setup.sh } if ('${{ matrix.platform }}' -eq 'win32') { powershell ./setup.ps1 } else { sh ./setup.sh }
working-directory: ${{ runner.temp }}/${{ env.ARTIFACT_NAME }} working-directory: ${{ runner.temp }}/${{ env.ARTIFACT_NAME }}
- name: Setup Node.js ${{ inputs.tool-version }} - name: Setup Node.js ${{ inputs.tool-version }}
if: inputs.tool-name == 'node' if: inputs.tool-name == 'node'
uses: actions/setup-node@v3 uses: actions/setup-node@v3
with: with:
node-version: ${{ inputs.tool-version }} node-version: ${{ inputs.tool-version }}
- name: Setup Go ${{ inputs.tool-version }} - name: Setup Go ${{ inputs.tool-version }}
if: inputs.tool-name == 'go' if: inputs.tool-name == 'go'
uses: actions/setup-go@v3 uses: actions/setup-go@v3
with: with:
go-version: ${{ inputs.tool-version }} go-version: ${{ inputs.tool-version }}
- name: Wait for the logs - name: Wait for the logs
run: | run: |
Write-Host "Fake step that does nothing" Write-Host "Fake step that does nothing"
@ -140,16 +132,15 @@ jobs:
Write-Host "In testing step we analyze build log of 'Setup ${{ inputs.tool-name }}' task" Write-Host "In testing step we analyze build log of 'Setup ${{ inputs.tool-name }}' task"
Write-Host "to determine if ${{ inputs.tool-name }} version was consumed from cache or if it was downloaded" Write-Host "to determine if ${{ inputs.tool-name }} version was consumed from cache or if it was downloaded"
for ($i = 0; $i -lt 200; $i++) { Get-Random } for ($i = 0; $i -lt 200; $i++) { Get-Random }
- name: Run tests - name: Run tests
env: env:
VERSION: ${{ inputs.tool-version }} VERSION: ${{ inputs.tool-version }}
run: | run: |
Install-Module Pester -Force -Scope CurrentUser -SkipPublisherCheck
Import-Module Pester Import-Module Pester
$toolName = (Get-Culture).TextInfo.ToTitleCase("${{ inputs.tool-name }}") $toolName = (Get-Culture).TextInfo.ToTitleCase("${{ inputs.tool-name }}")
Invoke-Pester -Script ./$toolName.Tests.ps1 -EnableExit Invoke-Pester -Script ./$toolName.Tests.ps1 -EnableExit
working-directory: ./tests working-directory: ./tests
publish_release: publish_release:
name: Publish release name: Publish release
if: inputs.publish-release if: inputs.publish-release
@ -157,7 +148,6 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/download-artifact@v3 - uses: actions/download-artifact@v3
- name: Generate release body - name: Generate release body
id: generate-release-body id: generate-release-body
run: | run: |
@ -167,7 +157,6 @@ jobs:
$releaseBody = 'Go ${{ inputs.tool-version }}' $releaseBody = 'Go ${{ inputs.tool-version }}'
} }
echo "RELEASE_BODY=$releaseBody" >> $env:GITHUB_OUTPUT echo "RELEASE_BODY=$releaseBody" >> $env:GITHUB_OUTPUT
- name: Publish Release - name: Publish Release
id: create_release id: create_release
uses: actions/create-release@v1 uses: actions/create-release@v1
@ -178,7 +167,6 @@ jobs:
release_name: ${{ inputs.tool-version }} release_name: ${{ inputs.tool-version }}
body: | body: |
${{ steps.generate-release-body.outputs.RELEASE_BODY }} ${{ steps.generate-release-body.outputs.RELEASE_BODY }}
- name: Generate hash for packages - name: Generate hash for packages
run: | run: |
$childItems = Get-Childitem -Path '.' $childItems = Get-Childitem -Path '.'
@ -190,7 +178,6 @@ jobs:
Write-Host "$hashString" Write-Host "$hashString"
Add-Content -Path ./hashes.sha256 -Value "$hashString" Add-Content -Path ./hashes.sha256 -Value "$hashString"
} }
- name: Upload release assets - name: Upload release assets
uses: actions/github-script@v6 uses: actions/github-script@v6
with: with:
@ -199,7 +186,6 @@ jobs:
const fs = require('fs'); const fs = require('fs');
for (let artifactDir of fs.readdirSync('.')) { for (let artifactDir of fs.readdirSync('.')) {
let artifactName = fs.lstatSync(artifactDir).isDirectory() ? fs.readdirSync(`${artifactDir}`)[0] : artifactDir; let artifactName = fs.lstatSync(artifactDir).isDirectory() ? fs.readdirSync(`${artifactDir}`)[0] : artifactDir;
console.log(`Upload ${artifactName} asset`); console.log(`Upload ${artifactName} asset`);
github.rest.repos.uploadReleaseAsset({ github.rest.repos.uploadReleaseAsset({
owner: context.repo.owner, owner: context.repo.owner,
@ -209,7 +195,6 @@ jobs:
data: fs.lstatSync(artifactDir).isDirectory() ? fs.readFileSync(`./${artifactDir}/${artifactName}`) : fs.readFileSync(`./${artifactName}`).toString() data: fs.lstatSync(artifactDir).isDirectory() ? fs.readFileSync(`./${artifactDir}/${artifactName}`) : fs.readFileSync(`./${artifactName}`).toString()
}); });
} }
trigger_pr: trigger_pr:
name: Trigger "Create Pull Request" workflow name: Trigger "Create Pull Request" workflow
needs: publish_release needs: publish_release

Loading…
Cancel
Save