Skip to content

Commit 22965ba

Browse files
committed
CI: cache-deps: rm skip intended for master<->PR merge skip
This workflow it intended to be run on `master` only. & to run after every merge to rebuid the cache, as was agreed before While this using this skip action - means that if the same `workflow` was present in the PR - the workflow would not run inside `master`, so: 1. this code is not needed in this workflow. 2. this code may work against the agenda of the workflow. So, lets just simplify things here.
1 parent a81e83a commit 22965ba

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

.github/workflows/cache-deps.yml

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -23,27 +23,8 @@ on:
2323
- '**'
2424

2525
jobs:
26-
pre_job:
27-
runs-on: ubuntu-latest
28-
outputs:
29-
should_skip: ${{ steps.skip_check.outputs.should_skip }}
30-
should_skip_ghcide: ${{ steps.skip_ghcide_check.outputs.should_skip }}
31-
steps:
32-
- id: skip_check
33-
uses: fkirc/skip-duplicate-actions@v3.4.1
34-
with:
35-
cancel_others: false
36-
paths_ignore: '["**/docs/**", "**.md", "**/LICENSE", "install/**", "**.nix", "flake.lock", "**/README.md", "FUNDING.yml", ".circleci/**"]'
37-
# If we only change ghcide downstream packages we have not test ghcide itself
38-
- id: skip_ghcide_check
39-
uses: fkirc/skip-duplicate-actions@v3.4.1
40-
with:
41-
cancel_others: false
42-
paths_ignore: '["hls-test-utils/**", "plugins/**", "src/**", "exe/**", "test/**", "shake-bench/**"]'
4326

4427
deps:
45-
if: needs.pre_job.outputs.should_skip != 'true'
46-
needs: pre_job
4728
runs-on: ${{ matrix.os }}
4829
strategy:
4930
matrix:

0 commit comments

Comments
 (0)