Skip to content

Commit

Permalink
add build workflow to reproduce einval problem
Browse files Browse the repository at this point in the history
  • Loading branch information
epszaw committed Apr 24, 2024
1 parent aadec29 commit 8a2ec8f
Show file tree
Hide file tree
Showing 5 changed files with 75 additions and 4 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build

on:
workflow_dispatch:
pull_request:
branches:
- "*"
push:
branches:
- "main"
- "hotfix-*"

jobs:
build:
strategy:
fail-fast: false
matrix:
node-version: [ 18, 20, 21 ]
os: [ ubuntu-latest, windows-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org/
- run: npm ci
- name: "Fetch & Unpack Allure Commandline from Maven Central"
run: ./fetch-source.sh
if: runner.os != 'Windows'
- name: "Fetch & Unpack Allure Commandline from Maven Central"
run: powershell -ExecutionPolicy Bypass -File fetch-source.ps1
if: runner.os == 'Windows'
- run: npm link
- run: allure --version
23 changes: 23 additions & 0 deletions fetch-source.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Get version from package.json
$version = node -p "require('./package.json').version"

# Remove dist directory if it exists and create a new one
if(Test-Path -Path dist) {
Remove-Item -Path dist -Recurse -Force
}
New-Item -ItemType Directory -Path dist

# Remove allure-commandline.zip if it exists
if(Test-Path -Path allure-commandline.zip) {
Remove-Item -Path allure-commandline.zip -Force
}

# Download allure-commandline.zip from Maven repository
Invoke-WebRequest -Uri "https://repo.maven.apache.org/maven2/io/qameta/allure/allure-commandline/$version/allure-commandline-$version.zip" -OutFile allure-commandline.zip

# Extract allure-commandline.zip to dist directory
Add-Type -AssemblyName System.IO.Compression.FileSystem
[System.IO.Compression.ZipFile]::ExtractToDirectory('allure-commandline.zip', 'dist')

# List files in current directory
Get-ChildItem -Path .
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ var allureCommand = 'allure' + (isWindows ? '.bat' : '');
module.exports = function(args) {
return require('child_process').spawn(path.join(__dirname, 'dist/bin', allureCommand), args, {
env: process.env,
stdio: 'inherit'
stdio: 'inherit',
shell: true,
});
}
16 changes: 14 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"index.js"
],
"scripts": {
"test": "./bin/allure --version"
"test": "node ./bin/allure --version"
},
"repository": "https://github.com/allure-framework/allure-npm.git",
"license": "Apache-2.0",
Expand Down

0 comments on commit 8a2ec8f

Please sign in to comment.