Skip to content

Commit 402302a

Browse files
committed
WIP
1 parent 81326d5 commit 402302a

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.github/actions/build-pandas/action.yml

+2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@ runs:
77
- name: Environment Detail
88
id: env-detail
99
run: |
10+
echo ::group::{Environment Detail}
1011
conda info
1112
conda list
1213
echo ::set-output name=python-version::$(conda list -f python --json | jq -r '.[0].version')
14+
echo ::endgroup::
1315
shell: bash -el {0}
1416

1517
- name: Set up Ccache

.github/actions/setup-ccache/action.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ runs:
1111
run: echo "::set-output name=today::$(/bin/date -u '+%Y%m%d')"
1212
shell: bash
1313

14-
- name: Fix Windows temporary directory
15-
# On Windows, for some reason the default temporary directory provided to sccache
16-
# may become read-only at some point. Work around by having a private tempdir.
17-
id: mktemp
18-
run: echo "::set-output name=tmpdir::$(cygpath -w $(mktemp -d))"
19-
shell: bash
20-
if: ${{ runner.os == 'Windows' }}
14+
# - name: Fix Windows temporary directory
15+
# # On Windows, for some reason the default temporary directory provided to sccache
16+
# # may become read-only at some point. Work around by having a private tempdir.
17+
# id: mktemp
18+
# run: echo "::set-output name=tmpdir::$(cygpath -w $(mktemp -d))"
19+
# shell: bash
20+
# if: ${{ runner.os == 'Windows' }}
2121

2222
- name: Setup sccache
2323
uses: hendrikmuhs/[email protected]

0 commit comments

Comments
 (0)