Skip to content

Commit 9bfca0d

Browse files
committed
Enable conda verbosity
1 parent 1fe2f10 commit 9bfca0d

File tree

2 files changed

+6
-12
lines changed

2 files changed

+6
-12
lines changed

.github/workflows/conda-package.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,6 @@ jobs:
7272
with:
7373
access_token: ${{ github.token }}
7474

75-
- if: matrix.os == 'ubuntu-20.04'
76-
name: Free Disk Space (Ubuntu)
77-
uses: jlumbroso/[email protected]
78-
with:
79-
docker-images: false
80-
8175
- name: Checkout DPNP repo
8276
uses: actions/[email protected]
8377
with:
@@ -117,7 +111,12 @@ jobs:
117111
${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-
118112
119113
- name: Build conda package
120-
run: conda build --no-test --python ${{ matrix.python }} ${{ env.CHANNELS }} conda-recipe
114+
run: |
115+
conda config --set verbosity 3 --env
116+
conda build --build-only --python ${{ matrix.python }} ${{ env.CHANNELS }} conda-recipe
117+
echo "printing some text"
118+
env:
119+
CONDA_VERBOSITY: 3
121120

122121
- name: Upload artifact
123122
uses: actions/[email protected]

.github/workflows/generate_coverage.yaml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,6 @@ jobs:
2323
with:
2424
access_token: ${{ github.token }}
2525

26-
- name: Free Disk Space (Ubuntu)
27-
uses: jlumbroso/[email protected]
28-
with:
29-
docker-images: false
30-
3126
- name: Checkout repo
3227
uses: actions/[email protected]
3328
with:

0 commit comments

Comments
 (0)