Skip to content

Debug Microsoft Store download of Alpine Linux for WSL #1

Debug Microsoft Store download of Alpine Linux for WSL

Debug Microsoft Store download of Alpine Linux for WSL #1

Workflow file for this run

# https://github.com/actions/runner-images/discussions/8791, with minor tweaks.
name: Debug download
on:
push: {}
jobs:
test:
name: Test
runs-on: windows-latest
steps:
- name: Setup Debian
uses: Vampire/setup-wsl@v2
with:
distribution: Debian
additional-packages: python3-pip
- name: Install HTTPie in Debian
shell: wsl-bash {0}
run: python3 -m pip install --upgrade pip wheel httpie
- name: Install HTTPie in Windows
run: python -m pip install --upgrade pip wheel httpie
- name: Check Python version in Debian
shell: wsl-bash {0}
run: python3 --version
- name: Check Python version in Windows
run: python --version
- name: Check HTTPie version in Debian
shell: wsl-bash {0}
run: http --version
- name: Check HTTPie version in Windows
run: http --version
- name: Setup tmate session
if: always()
uses: mxschmitt/action-tmate@v3
with:
limit-access-to-actor: true