forked from gitpython-developers/GitPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Debug Microsoft Store download of Alpine Linux for WSL
- Loading branch information
1 parent
fe082ad
commit a8cee26
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
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
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 |