Skip to content

Commit

Permalink
chore: verbose build output in CI
Browse files Browse the repository at this point in the history
The default output doesn't contain enough information to diagnose issues.
  • Loading branch information
vlaci committed Jun 2, 2023
1 parent df08473 commit 3acdf72
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
key: pytest-${{ matrix.os }}
- name: Install dependencies
run: |
pdm sync -d
pdm sync -v -d
- name: Run Tests
run: |
pdm pytest
Expand All @@ -109,7 +109,7 @@ jobs:
- uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Install dependencies
run: |
pdm sync -d
pdm sync -v -d
- name: Type-Check
run: |
pdm pyright
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
with:
target: ${{ matrix.target }}
container: ${{ env.CONTAINER }}
args: --release --out dist
args: --verbose --release --out dist
sccache: ${{ matrix.target == 'musllinux_1_1' }}
manylinux: auto
docker-options: -e CARGO_NET_GIT_FETCH_WITH_CLI=true
Expand All @@ -171,7 +171,7 @@ jobs:
cd /usr/src
curl -sSL https://raw.githubusercontent.com/pdm-project/pdm/main/install-pdm.py | python3.10 -
export PATH=/root/.local/bin:$PATH
pdm sync -d --no-self -G test
pdm sync -v -d --no-self -G test
pdm run python -m ensurepip
pdm run python -m pip install dist/*.whl
pdm pytest
Expand All @@ -196,7 +196,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist
args: --verbose --release --out dist
sccache: "true"
- name: Upload wheels
uses: actions/upload-artifact@v3
Expand All @@ -208,7 +208,7 @@ jobs:
- name: Test wheels
if: ${{ matrix.target == 'x86_64' }}
run: |
pdm sync -d --no-self -G test
pdm sync -v -d --no-self -G test
pdm run python -m ensurepip
pdm run python -m pip install dist/*.whl
pdm pytest
Expand Down

0 comments on commit 3acdf72

Please sign in to comment.