Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upload CMake logs to the action artifacts #7611

Merged
merged 4 commits into from
Jan 22, 2025
Merged
Show file tree
Hide file tree
Changes from 2 commits
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
13 changes: 12 additions & 1 deletion .github/workflows/linux-32bit-build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
if: always() && steps.cache-postgresql.outputs.cache-hit != 'true'
uses: actions/upload-artifact@v4
with:
name: config.log for i386 PostgreSQL ${{ matrix.pg }}
name: config.log linux-i386 PG${{ matrix.pg }}
path: ~/${{ env.PG_SRC_DIR }}/config.log

- name: Build TimescaleDB
Expand All @@ -145,6 +145,17 @@ jobs:
make -C build install
chown -R postgres:postgres .

- name: Upload CMake Logs
if: always()
uses: actions/upload-artifact@v4
with:
name: CMake Logs linux-i386 PG${{ matrix.pg }}
path: |
build/CMakeCache.txt
build/CMakeFiles/CMakeError.log
build/CMakeFiles/CMakeOutput.log
build/compile_commands.json

- name: make installcheck
id: installcheck
shell: bash
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/linux-build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,17 @@ jobs:
make -j $(nproc) -C build
make -C build install

- name: Upload CMake Logs
if: always()
uses: actions/upload-artifact@v4
with:
name: CMake Logs ${{ matrix.os }} ${{ matrix.name }} ${{ matrix.pg }}
path: |
build/CMakeCache.txt
build/CMakeFiles/CMakeError.log
build/CMakeFiles/CMakeOutput.log
build/compile_commands.json

- name: Check exported symbols
run: ./build/scripts/export_prefix_check.sh

Expand Down
Loading