-
Notifications
You must be signed in to change notification settings - Fork 7
34 lines (32 loc) · 1.01 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Build everything
on:
workflow_dispatch
jobs:
build:
strategy:
matrix:
os: [windows-latest]
arch: [amd64, x86]
runs-on: ${{matrix.os}}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: 'true'
- name: Dump environment
shell: cmd
run: |
echo ----------------------------------------------------
set
echo ----------------------------------------------------
dir /OG %SystemDrive%\
echo ----------------------------------------------------
dir /OG %SystemDrive%\msys64
echo ----------------------------------------------------
dir /OG %SystemDrive%\msys64\mingw32
dir /OG %SystemDrive%\msys64\mingw64
echo ----------------------------------------------------
dir py -0p
py -3 -V
py -3 -m pip list
echo ----------------------------------------------------