diff options
author | Marvin Borner | 2020-03-31 21:14:59 +0200 |
---|---|---|
committer | Marvin Borner | 2020-03-31 21:14:59 +0200 |
commit | e27f8b55986cfd48ba09a8a75cd0a2bc5d62ac39 (patch) | |
tree | e3a63626d28e967db28a89c2034e598567edcb7d /.github/workflows | |
parent | 75bc75525541b6cb3c5b0062fbfc0e55ebf151b8 (diff) |
Cross compiler caching
Let's hope it works ;)
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3e9e71a..7cb3746 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,9 +1,6 @@ name: Project build -on: - push: - branches: - - master +on: push jobs: build: @@ -14,6 +11,15 @@ jobs: - uses: actions/checkout@v1 - name: Install run: sudo apt-get update && sudo apt-get install -y build-essential bison flex libgmp3-dev libmpc-dev libmpfr-dev texinfo libcloog-isl-dev libisl-0.18-dev ccache curl nasm genisoimage qemu qemu-kvm mtools + - name: Get cross compiler + id: cache-cross + uses: actions/cache@v1 + with: + path: cross + key: ${{ runner.os }}-cross + - name: Build cross compiler + if: steps.cache-cross.outputs.cache-hit != 'true' + run: sh run cross - name: Build run: sh run build - name: Test install |