From e27f8b55986cfd48ba09a8a75cd0a2bc5d62ac39 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 31 Mar 2020 21:14:59 +0200 Subject: Cross compiler caching Let's hope it works ;) --- .github/workflows/build.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to '.github') 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 -- cgit v1.2.3