Skip to content

Commit cef0863

Browse files
committed
list all files
1 parent 4d0bb9a commit cef0863

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

.github/workflows/build-windows.yml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,23 @@ jobs:
9898
id: gtest
9999
uses: ./.github/actions/get-gtest
100100

101+
- name: 'check computer'
102+
id: check-files
103+
run: |
104+
echo listing '/c/Program Files'
105+
find '/c/Program Files'
106+
echo using ls:
107+
ls -lR '/c/Program Files'
108+
echo listing '/c/Program Files (x86)'
109+
find '/c/Program Files (x86)'
110+
echo using ls:
111+
ls -lR '/c/Program Files (x86)'
112+
env:
113+
# We need a minimal PATH on Windows
114+
# Set PATH to "", so just GITHUB_PATH is included
115+
PATH: ''
116+
shell: env /usr/bin/bash --login -eo pipefail {0}
117+
101118
- name: 'Check toolchain installed'
102119
id: toolchain-check
103120
run: |
@@ -128,7 +145,6 @@ jobs:
128145
--with-boot-jdk=${{ steps.bootjdk.outputs.path }}
129146
--with-jtreg=${{ steps.jtreg.outputs.path }}
130147
--with-gtest=${{ steps.gtest.outputs.path }}
131-
--with-msvc-toolset-version=${{ inputs.msvc-toolset-version }}
132148
--with-jmod-compress=zip-1
133149
${{ inputs.extra-conf-options }} ${{ inputs.configure-arguments }} || (
134150
echo "Dumping config.log:" &&

0 commit comments

Comments
 (0)