Skip to content

Commit

Permalink
Also increase swap space in reprocheck workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
valldrac committed May 29, 2022
1 parent f9634c3 commit 38d4d32
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/reprocheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,14 @@ jobs:
with:
ref: "${{ env.TAG_NAME }}"

- name: Increase swap space
run: |
sudo fallocate -l 8G /swapB
sudo chmod 600 /swapB
sudo mkswap /swapB
sudo swapon /swapB
swapon --show
- name: Build Docker image
run: docker-compose build
working-directory: reproducible-builds
Expand Down

0 comments on commit 38d4d32

Please sign in to comment.