Skip to content

Commit

Permalink
ci - debug disk
Browse files Browse the repository at this point in the history
  • Loading branch information
aprxi committed Aug 10, 2024
1 parent f55c0e4 commit b2658fd
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/build_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

- name: Check disk usage
run: df -h

- name: Install and configure dependencies
run: |
# dependencies are only needed on ubuntu as that's the only place where
Expand All @@ -68,8 +71,14 @@ jobs:
linker = "aarch64-linux-gnu-gcc"
EOF
- name: Check disk usage
run: df -h

- name: Install target
run: rustup target add $TARGET

- name: Check disk usage
run: df -h

- name: Update version in Cargo.toml
id: update_version
Expand All @@ -96,6 +105,9 @@ jobs:
- name: Build project
run: cargo build -p $NAME --release --target $TARGET

- name: Check disk usage
run: df -h

- name: List target directory
run: ls target/${{ matrix.target }}/release

Expand Down

0 comments on commit b2658fd

Please sign in to comment.