File tree 1 file changed +22
-5
lines changed
1 file changed +22
-5
lines changed Original file line number Diff line number Diff line change @@ -11,11 +11,28 @@ concurrency:
11
11
cancel-in-progress : true
12
12
13
13
jobs :
14
+ # skip_checks:
15
+ # name: Analyze
16
+ # uses: ./.github/workflows/skip_checks.yml
17
+ # with:
18
+ # runs-on: macos-latest
14
19
skip_checks :
15
- name : Analyze
16
- uses : ./.github/workflows/skip_checks.yml
17
- with :
18
- runs-on : macos-latest
20
+ name : Skip
21
+ steps :
22
+ - name : Checkout code
23
+ uses : actions/checkout@v4
24
+ with :
25
+ fetch-depth : 0
26
+ - name : Analyze PR
27
+ run : |
28
+ .github/workflows/scripts/check_diff.sh \
29
+ ${{ github.event.pull_request.head.ref }} \
30
+ ${{ github.event.pull_request.base.ref }} \
31
+ ${{ github.event.pull_request.head.repo.clone_url }}
32
+ - name : Debug
33
+ run : echo "env.SKIP_CHECKS=${{ env.SKIP_CHECKS }}"
34
+ outputs :
35
+ skip : ${{ env.SKIP_CHECKS }}
19
36
build_appleclang :
20
37
name : AppleClang
21
38
runs-on : macos-latest
27
44
# CMAKE_GENERATOR: Ninja
28
45
steps :
29
46
- name : Debugging
30
- run : echo "SKIP=${{ needs.skip_checks.outputs }}"
47
+ run : echo "SKIP=${{ needs.skip_checks.outputs.skip }}"
31
48
- name : Checkout code
32
49
uses : actions/checkout@v4
33
50
- name : Install Python
You can’t perform that action at this time.
0 commit comments