Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixup! tools: use sparse checkout in build-tarball.yml
  • Loading branch information
aduh95 committed Sep 7, 2025
commit fe2a24f7eda951fd1f4118be93ae0b58b697d246
18 changes: 11 additions & 7 deletions .github/workflows/build-tarball.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,8 @@ jobs:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
sparse-checkout: |
.github/actions
tools/eslint
tools/eslint-rules
sparse-checkout: .github/actions/install-clang
sparse-checkout-cone-mode: false
- name: Install Clang ${{ env.CLANG_VERSION }}
uses: ./.github/actions/install-clang
with:
Expand All @@ -110,10 +108,16 @@ jobs:
- name: Build
run: |
make -C "$TAR_DIR" build-ci -j4 V=1
- name: Copy directories needed for testing
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
sparse-checkout: |
tools/eslint
tools/eslint-rules
- name: Move directories needed for testing
run: |
cp -r tools/eslint $TAR_DIR/tools
cp -r tools/eslint-rules $TAR_DIR/tools
mv tools/eslint $TAR_DIR/tools
mv tools/eslint-rules $TAR_DIR/tools
- name: Test
run: |
make -C "$TAR_DIR" run-ci -j4 V=1 TEST_CI_ARGS="-p dots --measure-flakiness 9"
Loading