Update SnoopCompile.yml

This commit is contained in:
t-bltg 2022-04-16 15:13:29 +02:00 committed by GitHub
parent 6773666549
commit 1c59b19343
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,7 @@ jobs:
if: "!contains(github.event.head_commit.message, '[skip ci]')" if: "!contains(github.event.head_commit.message, '[skip ci]')"
env: env:
GKS_ENCODING: "utf8" GKS_ENCODING: "utf8"
GKSwstype: "100" GKSwstype: "nul"
PLOTS_TEST: "true" PLOTS_TEST: "true"
runs-on: ${{matrix.os}} runs-on: ${{matrix.os}}
strategy: strategy:
@ -38,6 +38,11 @@ jobs:
- uses: julia-actions/setup-julia@latest - uses: julia-actions/setup-julia@latest
with: with:
version: ${{matrix.version}} version: ${{matrix.version}}
- name: Set Swap Space
uses: pierotofy/set-swap-space@master
with:
swap-size-gb: 10 # required (not enough memory on github actions virtual machine)
- name: Install dependencies - name: Install dependencies
run: | run: |
@ -46,6 +51,8 @@ jobs:
cat /proc/cpuinfo cat /proc/cpuinfo
cat /proc/meminfo cat /proc/meminfo
cat /proc/swaps cat /proc/swaps
free
df -h
# TESTCMD # TESTCMD
- name: Default TESTCMD - name: Default TESTCMD