Is there support for `windows-latest` runner?
Nobody has claimed this yet.
Assessment
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Newbie friendliness
- 55/100
- Issue type
- Feature
- Clarity
- Mostly clear
- Activity status
- Active
- Tech stack
- github-actions, powershell, typescript
Research direction
Start by reproducing the provided workflow on a windows-latest runner and trace the setup step that reports "Unsupported platform: win32". Compare its behavior with the working PowerShell installation shown in the issue. Done means the action's setup-only path installs APM on windows-latest so the subsequent frozen install works without the workaround.
Written by the indexing model from the issue text.
Description
Running the step with the action, I get error:
APM action failed: Unsupported platform: win32
With a simple setup:
jobs:
test:
runs-on: windows-latest
steps:
- name: Check out code
uses: actions/checkout
- name: Install APM
uses: microsoft/apm-action@v1
with:
apm-version: latest
setup-only: true
- run: apm install --frozen
Current setup step that works for me:
- name: Install APM (Windows)
if: matrix.os == 'windows-latest'
shell: pwsh
run: |
$env:APM_INSTALL_DIR = Join-Path $env:RUNNER_TEMP 'apm\bin'
irm https://aka.ms/apm-windows | iex
$apmRoot = Split-Path $env:APM_INSTALL_DIR -Parent
Add-Content -Path $env:GITHUB_PATH -Value $env:APM_INSTALL_DIR
Add-Content -Path $env:GITHUB_PATH -Value (Join-Path $apmRoot 'current')
& (Join-Path $env:APM_INSTALL_DIR 'apm.cmd') --version
- Dominant language
- TypeScript
- Stars
- 21
- Forks
- 8
- PR merge metrics
- No merged PRs in 30d
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
More from microsoft/apm-action
-
Difficulty 2/5 1-3 hours Newbie friendliness 76/100
microsoft/apm-action#60 ·
-
Difficulty 1/5 Under an hour Newbie friendliness 76/100
microsoft/apm-action#55 ·
-
Difficulty 3/5 1-2 days Newbie friendliness 74/100
microsoft/apm-action#63 ·
-
Difficulty 4/5 3-5 days Newbie friendliness 45/100
microsoft/apm-action#41 ·
All issues in microsoft/apm-action
Similar issues
-
clawsweeper:fix-shape-clear clawsweeper:queueable-fix clawsweeper:source-repro impact:ux-friction issue-rating: 🦞 diamond lobster no-stale P3
Difficulty 2/5 1-3 hours Newbie friendliness 78/100
-
community first-timers-only good first issue hacktoberfest help wanted low hanging fruit up-for-grabs
Difficulty 1/5 Under an hour Newbie friendliness 76/100
-
code-quality refactoring
Difficulty 2/5 1-3 hours Newbie friendliness 84/100
github/gh-aw-firewall#8816 ·
-
integration:quickjs org:external priority:backlog topic:code-interpreter topic:middleware type:feature
Difficulty 2/5 1-3 hours Newbie friendliness 74/100
langchain-ai/deepagents#6450 ·
-
Difficulty 1/5 Under an hour Newbie friendliness 88/100
vercel/react-tweet#225 ·