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 99bab18 commit a3a5022Copy full SHA for a3a5022
.github/workflows/conda-package.yml
@@ -7,6 +7,8 @@ permissions: read-all
7
env:
8
PACKAGE_NAME: mkl_umath
9
MODULE_NAME: mkl_umath
10
+ VER_SCRIPT1: "import json; f = open('ver.json', 'r'); j = json.load(f); f.close(); d = j['mkl_umath'][0];"
11
+ VER_SCRIPT2: "print('='.join((d[s] for s in ('version', 'build'))))"
12
13
jobs:
14
build_linux:
@@ -252,6 +254,7 @@ jobs:
252
254
- name: Collect dependencies
253
255
shell: cmd /C CALL {0}
256
run: |
257
+ @ECHO ON
258
IF NOT EXIST ver.json (
259
copy /Y ${{ env.workdir }}\ver.json .
260
)
0 commit comments