Skip to content

Commit

Permalink
ci: try to cut down on storage use for the weekly CI
Browse files Browse the repository at this point in the history
  • Loading branch information
streaksu committed Nov 12, 2024
1 parent a8f4370 commit 4333624
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,22 @@ jobs:
run: test "$(git tag --points-at HEAD)" = ""

- name: Build base
run: |
set -ex
case "${{matrix.target_arch}}" in \
riscv64) \
JINX_CONFIG_FILE=jinx-config-riscv64 ./jinx build base ;; \
x86_64) \
./jinx build base ;; \
esac
- name: Remove leftovers to reduce space
run: |
set -ex
rm -rf sources builds host-builds
- name: Build image
run: |
set -ex
Expand Down

0 comments on commit 4333624

Please sign in to comment.