From f692971daf8c64b4c97ff2111881ad80f46d5b37 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 31 Mar 2020 21:30:32 +0200 Subject: Some workflow improvements and cache testing I've added an empty line so I can test the cross-compiler caching functionality --- .github/workflows/build.yml | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) (limited to '.github') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7cb3746..45001da 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,13 +4,15 @@ on: push jobs: build: + paths: + - 'src/**' runs-on: ubuntu-latest steps: - 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 + run: sudo apt-get update && sudo apt-get install -y build-essential ccache curl nasm genisoimage qemu qemu-kvm mtools - name: Get cross compiler id: cache-cross uses: actions/cache@v1 @@ -19,17 +21,10 @@ jobs: key: ${{ runner.os }}-cross - name: Build cross compiler if: steps.cache-cross.outputs.cache-hit != 'true' - run: sh run cross + run: | + sudo apt-get install -y bison flex libgmp3-dev libmpc-dev libmpfr-dev texinfo libcloog-isl-dev libisl-0.18-dev curl + sh run cross - name: Build run: sh run build - name: Test install run: sh run image - - name: Release - uses: softprops/action-gh-release@v1 - if: startsWith(github.ref, 'refs/tags/') - with: - files: build/melvix.iso - name: Melvix Weekly Release - prerelease: 1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} -- cgit v1.2.3