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

[Sweep GHA Fix] Fix failing GitHub Actions on 723f5c0 (main) #35

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ make
cd ..
./bootstrap -DCMAKE_BUILD_TYPE=Debug
cd build && make
make installcheck
make installcheck\n\n# Investigate and address any test failures:\n# - Check the build logs for error messages\n# - Inspect the relevant test logs for failure details\n# - Fix the issues and rerun the test suite to ensure all tests pass successfully before opening a pull request
```

All submitted pull requests are also automatically
Expand Down
10 changes: 10 additions & 0 deletions test_files/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
cd timescaledb
cmake -DCMAKE_BUILD_TYPE=Debug .
make
cd ..
./bootstrap -DCMAKE_BUILD_TYPE=Debug
cd build && make
```
3. Run the test suite:
```bash
make installcheck
Loading