Skip to content

Commit

Permalink
Merge pull request #98 from sintefmath/swap-ci
Browse files Browse the repository at this point in the history
Increase swap in CI
  • Loading branch information
moyner authored Feb 14, 2025
2 parents 5b75d35 + 4d6dd1b commit 38c1dfd
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,14 @@ jobs:
permissions:
contents: write
steps:
- name: Increase swapfile
run: |
sudo swapoff -a
sudo fallocate -l 15G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo swapon --show
- name: Add GLMakie/XFVB dependencies
run: sudo apt-get update && sudo apt-get install -y xorg-dev mesa-utils xvfb libgl1 freeglut3-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libxext-dev libcairo2-dev libfreetype6-dev libffi-dev libjpeg-dev libpng-dev libz-dev
- name: Checkout
Expand Down

0 comments on commit 38c1dfd

Please sign in to comment.