diff options
author | Marvin Borner | 2020-05-07 22:37:40 +0200 |
---|---|---|
committer | Marvin Borner | 2020-05-07 22:37:40 +0200 |
commit | 3a97fef4bb4780e4bc2423699063d40cbf5da923 (patch) | |
tree | f0cacd1bc551a63b83d05d45c233f8f94eb582c0 /.github | |
parent | 9b2e28ad7a752c0fe7b60e73ca43c827b45b3ee8 (diff) |
Github can't build; I can - why?
Just a random guess fix that github somehow managed to mess up the cross
compiler..
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 602bce4..ab67c92 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,9 +1,6 @@ name: Project build -on: - push: - paths: - - 'src/**' +on: push jobs: build: @@ -18,7 +15,7 @@ jobs: uses: actions/cache@v1 with: path: cross - key: ${{ runner.os }}-cross + key: toller-compiler - name: Build cross compiler if: steps.cache-cross.outputs.cache-hit != 'true' run: sh run cross |