File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 61
61
62
62
- name : Checkout repo
63
63
64
+ with :
65
+ fetch-depth : 0
64
66
65
67
# https://github.com/marketplace/actions/setup-miniconda
66
68
- name : Setup miniconda
@@ -100,7 +102,10 @@ jobs:
100
102
working-directory : doc
101
103
102
104
- name : Set a project number to current release
103
- run : set PROJECT_NUMBER=$(git describe --tags --abbrev=0)
105
+ run : |
106
+ set PROJECT_NUMBER=$(git describe --tags --abbrev=0)
107
+ echo PROJECT_NUMBER=${PROJECT_NUMBER}
108
+ echo ref_name=${{github.ref_name}}
104
109
105
110
# https://github.com/marketplace/actions/doxygen-action
106
111
- name : Build backend docs
Original file line number Diff line number Diff line change @@ -194,7 +194,9 @@ jobs:
194
194
run : conda list
195
195
196
196
- name : Smoke test
197
- run : python -c "import dpnp, dpctl; dpctl.lsplatform()"
197
+ run : |
198
+ python -c "import dpnp, dpctl; dpctl.lsplatform()"
199
+ python -c "import dpnp; print(dpnp.__version__)"
198
200
199
201
# TODO: run the whole scope once the issues on CPU are resolved
200
202
- name : Run tests
@@ -331,7 +333,9 @@ jobs:
331
333
Get-Content -Tail 5 -Path $cl_cfg
332
334
333
335
- name : Smoke test
334
- run : python -c "import dpnp, dpctl; dpctl.lsplatform()"
336
+ run : |
337
+ python -c "import dpnp, dpctl; dpctl.lsplatform()"
338
+ python -c "import dpnp; print(dpnp.__version__)"
335
339
336
340
# TODO: run the whole scope once the issues on CPU are resolved
337
341
- name : Run tests
You can’t perform that action at this time.
0 commit comments