ci: remove minimum glibc information in summary page

It clutters up the page with unnecessary information. This information
can be provided as release notes or another form if needed.
This commit is contained in:
dundargoc 2024-02-10 17:40:50 +01:00 committed by dundargoc
parent e4894ac8b4
commit 77d7843b7b

View file

@ -157,12 +157,6 @@ jobs:
- name: Build CLI
run: $BUILD_CMD build --release --target=${{ matrix.target }} --features=${CLI_FEATURES}
- name: Info about CLI
if: ${{ startsWith(matrix.platform, 'linux') }}
run: |
min_glibc=$(objdump -p target/$TARGET/release/tree-sitter${{ env.EXE }} | sed -nr 's/.*(GLIBC_.+).*/\1/p' | sort -uV | tail -n1)
echo "🔗 Minimal **glibc** version required for CLI: ${min_glibc}">> $GITHUB_STEP_SUMMARY
- name: Fetch fixtures
if: ${{ !matrix.cli-only && inputs.run_test }} # Don't fetch fixtures for only CLI building targets
run: script/fetch-fixtures