Compare commits

..

2 Commits

Author SHA1 Message Date
David Bomba
4ea7218cd8 Merge pull request #702 from turbo124/master
Reduce parallel jobs and add swap in case we are hitting github actions
2025-01-24 10:10:16 +11:00
David Bomba
e161a85133 Reduce parallel jobs and add swap in case we are hitting github action limitations 2025-01-24 10:09:25 +11:00

View File

@@ -21,6 +21,19 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Add swap space
run: |
sudo fallocate -l 4G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
free -h
- name: Set MAKEFLAGS for parallel make jobs
run: |
export MAKEFLAGS="-j2"
echo "MAKEFLAGS set to: $MAKEFLAGS"
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
with: