|
25 | 25 | runs-on: build-only-flydsl |
26 | 26 | permissions: |
27 | 27 | contents: read |
| 28 | + env: |
| 29 | + # Keep checkout independent of runner-local git-cache rewrites. |
| 30 | + GIT_CONFIG_GLOBAL: /dev/null |
| 31 | + GIT_CONFIG_NOSYSTEM: "1" |
28 | 32 | steps: |
29 | 33 | - name: Checkout upstream aiter repo |
30 | 34 | uses: actions/checkout@v4 |
| 35 | + env: |
| 36 | + # Keep checkout independent of runner-local git-cache rewrites. |
| 37 | + GIT_CONFIG_GLOBAL: ${{ runner.temp }}/flydsl-gitconfig |
| 38 | + GIT_CONFIG_NOSYSTEM: "1" |
31 | 39 | with: |
32 | 40 | repository: ${{ env.AITER_REPOSITORY }} |
33 | 41 | ref: ${{ env.AITER_REF }} |
@@ -115,16 +123,29 @@ jobs: |
115 | 123 | extra_args: --block-size 1 --trust-remote-code |
116 | 124 | extra_env_args: -e VLLM_USE_TRITON_FLASH_ATTN=0 |
117 | 125 |
|
| 126 | + env: |
| 127 | + # Keep checkout independent of runner-local git-cache rewrites. |
| 128 | + GIT_CONFIG_GLOBAL: /dev/null |
| 129 | + GIT_CONFIG_NOSYSTEM: "1" |
| 130 | + |
118 | 131 | steps: |
119 | 132 | - name: Checkout FlyDSL utility scripts |
120 | 133 | uses: actions/checkout@v4 |
| 134 | + env: |
| 135 | + # Keep checkout independent of runner-local git-cache rewrites. |
| 136 | + GIT_CONFIG_GLOBAL: ${{ runner.temp }}/flydsl-gitconfig |
| 137 | + GIT_CONFIG_NOSYSTEM: "1" |
121 | 138 | with: |
122 | 139 | sparse-checkout: | |
123 | 140 | scripts/install_awscli.sh |
124 | 141 | path: flydsl |
125 | 142 |
|
126 | 143 | - name: Checkout aiter helper script |
127 | 144 | uses: actions/checkout@v4 |
| 145 | + env: |
| 146 | + # Keep checkout independent of runner-local git-cache rewrites. |
| 147 | + GIT_CONFIG_GLOBAL: ${{ runner.temp }}/flydsl-gitconfig |
| 148 | + GIT_CONFIG_NOSYSTEM: "1" |
128 | 149 | with: |
129 | 150 | repository: ${{ env.AITER_REPOSITORY }} |
130 | 151 | ref: ${{ env.AITER_REF }} |
|
0 commit comments