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 16314cd commit 08972b7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 Down

0 comments on commit 08972b7

Please sign in to comment.