Skip to content

Commit 3481583

Browse files
committed
ci: set INSTALL_PRECOMMIT=false for the test, smoke, and tutorial jobs
Skip git-hook configuration during env setup for the 4 linux test jobs, the macOS test run, test-smoke, and test-tutorials. `check` is left as-is.
1 parent e2fca4f commit 3481583

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ jobs:
4242
name: Linux / make test-smoke
4343
runs-on: ubuntu-latest
4444
timeout-minutes: 45
45+
env:
46+
INSTALL_PRECOMMIT: "false"
4547
steps:
4648
- name: Check out repository
4749
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
@@ -56,6 +58,8 @@ jobs:
5658
name: Linux / make test-tutorials
5759
runs-on: ubuntu-latest
5860
timeout-minutes: 60
61+
env:
62+
INSTALL_PRECOMMIT: "false"
5963
steps:
6064
- name: Check out repository
6165
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
@@ -73,6 +77,8 @@ jobs:
7377
if: github.repository == 'apple/coreai-optimization'
7478
runs-on: [self-hosted, macos, tahoe, ARM64]
7579
timeout-minutes: 60
80+
env:
81+
INSTALL_PRECOMMIT: "false"
7682
steps:
7783
- name: Check out repository
7884
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
@@ -94,6 +100,8 @@ jobs:
94100
needs: [check, test-smoke, test-tutorials]
95101
runs-on: ubuntu-latest
96102
timeout-minutes: 120
103+
env:
104+
INSTALL_PRECOMMIT: "false"
97105
steps:
98106
- name: Check out repository
99107
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
@@ -115,6 +123,8 @@ jobs:
115123
needs: [check, test-smoke, test-tutorials]
116124
runs-on: ubuntu-latest
117125
timeout-minutes: 120
126+
env:
127+
INSTALL_PRECOMMIT: "false"
118128
steps:
119129
- name: Check out repository
120130
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
@@ -136,6 +146,8 @@ jobs:
136146
needs: [check, test-smoke, test-tutorials]
137147
runs-on: ubuntu-latest
138148
timeout-minutes: 120
149+
env:
150+
INSTALL_PRECOMMIT: "false"
139151
steps:
140152
- name: Check out repository
141153
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
@@ -157,6 +169,8 @@ jobs:
157169
needs: [check, test-smoke, test-tutorials]
158170
runs-on: ubuntu-latest
159171
timeout-minutes: 120
172+
env:
173+
INSTALL_PRECOMMIT: "false"
160174
steps:
161175
- name: Check out repository
162176
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3

0 commit comments

Comments
 (0)