Skip to content

Commit

Permalink
Debug Microsoft Store download of Alpine Linux for WSL
Browse files Browse the repository at this point in the history
  • Loading branch information
EliahKagan committed Dec 4, 2023
1 parent fe082ad commit 3dbd2f1
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/debug-download.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# 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

0 comments on commit 3dbd2f1

Please sign in to comment.