-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
60a8cef
commit 06b56bb
Showing
3 changed files
with
62 additions
and
11 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
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 |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: Test Build on Push | ||
|
||
on: | ||
push: | ||
|
||
defaults: | ||
run: | ||
shell: powershell | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
permissions: write-all | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Convert tag to version | ||
id: convert_tag | ||
run: | | ||
$version = "${{ github.ref }}" | ||
$version = $version.Replace('refs/tags/', '') | ||
echo "version=$version" >> "$env:GITHUB_ENV" | ||
echo "version=$version" | ||
- name: Configure PowerShell | ||
run: | | ||
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process -Force | ||
- name: Install ps2exe module to compile PowerShell scripts | ||
run: | | ||
Install-Module -Name ps2exe -Scope CurrentUser -Force | ||
- name: Install Scoop, Nim and Nim dependencies | ||
run: | | ||
iex "& {$(irm get.scoop.sh)} -RunAsAdmin" | ||
echo "$env:USERPROFILE\scoop\shims" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append | ||
scoop install 7zip git nim | ||
nimble update -y | ||
nimble install -y puppy | ||
- name: Compile Nim applications | ||
run: | | ||
nim c --cc:vcc -d:release -d:static -o:bin\wsl-perf.exe wslperf.nim | ||
- name: Compile PowerShell scripts | ||
run: | | ||
echo "Compile version ${{ env.version }}" | ||
Get-ChildItem -Path . -Filter '*.ps1' -Recurse -Exclude build-wslinternals.ps1,sched-wsl-dist-update.ps1 | ForEach-Object { | ||
Invoke-ps2exe -inputFile $_.Name -verbose | ||
} | ||
- name: Create archive | ||
run: | | ||
Compress-Archive -Path .\*.exe, .\sched-wsl-dist-update.ps1 -DestinationPath "test-build.zip" |
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