Debug Microsoft Store download of Alpine Linux for WSL #1
Workflow file for this run
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
# 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 |