Skip to content

test

test #33

Workflow file for this run

name: Windows CI
on:
pull_request:
jobs:
build:
strategy:
matrix:
os:
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout tree
uses: actions/checkout@v4
- name: Install opam
run: |
Invoke-Expression "& { $(Invoke-RestMethod https://raw.githubusercontent.com/kit-ty-kate/opam/windows-installer.debug/shell/install.ps1) } -OpamBinDir 'C:\Program Files\opam\bin' -NoSetPath -NoAdmin"
"C:\Program Files\opam\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
# - name: Install opam
# run: |
# curl -LO https://github.com/user-attachments/files/15792432/archive.zip
# unzip archive.zip
# New-Item -Force -Path "C:\Program Files\opam\bin" -Type Directory
# Move-Item -Force -Path "opam-tmp.exe" -Destination "C:\Program Files\opam\bin\opam.exe"
# "C:\Program Files\opam\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: Init opam
run: opam init -yn .
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v44
#with:
# since_last_remote_commit: true
- name: List all changed packages
id: changed-packages
env:
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
run: |
$output = @()
Foreach ($file in ($env:ALL_CHANGED_FILES).Split(" ")) {
switch -Regex ($file) {
'^packages\\[^\\]*\\([^\\]*)\\.*' { $output += "$($matches[1])"; Break }
default { Write-Host "$file skipped"; Break }
}
}
$outputJson = $output | ConvertTo-Json
"data<<@@@" | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf8 -Append
$outputJson | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf8 -Append
"@@@" | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf8 -Append
- name: Install packages
env:
ALL_CHANGED_PACKAGES: ${{ steps.changed-packages.outputs.data }}
run: |
$pkgs = $env:ALL_CHANGED_PACKAGES | ConvertFrom-Json
$failed = $false
Foreach ($pkg in $pkgs) {
try {
opam install --confirm-level=unsafe-yes "$pkg"
} catch {
switch ($?) {
20 { Write-Host "$pkg is not installable. Skip."; Break }
31 { Write-Host "$pkg failed to build."; $failed = $true; Break }
default { throw "Unexpected error $_" }
}
}
}
if ($failed) {
throw "build failed"
}