Skip to content

Commit bb31565

Browse files
committed
windows???
1 parent 63ffe35 commit bb31565

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

.circleci/real_config.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2706,13 +2706,6 @@ jobs:
27062706
command: |
27072707
$version = & bash ./version.sh
27082708
setx VERSION $version
2709-
$version
2710-
$VERSION
2711-
- run:
2712-
name: Set VERSION environment variable
2713-
command: |
2714-
$version
2715-
$VERSION
27162709
- unless:
27172710
condition:
27182711
equal: [ win/default, << parameters.executor-name >> ]
@@ -2726,7 +2719,16 @@ jobs:
27262719
- run: python -m pip install --upgrade --user pip
27272720
- run: pip install wheel setuptools build
27282721
- run: cd harness; python -m build --wheel --outdir ../build
2729-
- run: pip install --find-links build determined==${VERSION}
2722+
- when:
2723+
condition:
2724+
equal: [ win/default, << parameters.executor-name >> ]
2725+
steps:
2726+
- run: pip install --find-links build determined==$env:VERSION
2727+
- unless:
2728+
condition:
2729+
equal: [ win/default, << parameters.executor-name >> ]
2730+
steps:
2731+
- run: pip install --find-links build determined==${VERSION}
27302732
- run: pip freeze --all
27312733
# Allow this to fail, but it is useful for debugging.
27322734
- run: sh -c "pip check || true"

0 commit comments

Comments
 (0)