We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30ca4ce commit d300089Copy full SHA for d300089
.github/workflows/publish.yml
@@ -19,6 +19,8 @@ jobs:
19
os: [ubuntu-22.04, windows-latest, macos-latest]
20
21
steps:
22
+ - run: where which
23
+ if: runner.os == 'Windows'
24
- uses: actions/checkout@v4
25
with:
26
submodules: true
setup.py
@@ -32,6 +32,11 @@ def run(self):
32
# make not rebuilding for different arch
33
mpy_cross_exe.unlink(missing_ok=True)
34
35
+ import os
36
+
37
+ print(os.environ["PATH"])
38
+ os.system("where which")
39
40
make_command = [
41
"make",
42
"-C",
0 commit comments