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 ffe2cb8 (main) #85

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
7 changes: 5 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,9 @@ cd timescaledb

## Testing

Every non-trivial change to the code base should be accompanied by a
relevant addition to or modification of the test suite.
It is crucial that every non-trivial change to the code base is accompanied by a
relevant addition to or modification of the test suite. It is important to run the
full test suite locally before opening a pull request.

Please check that the full test suite (including your test additions
or changes) passes successfully on your local machine **before you
Expand All @@ -129,6 +130,8 @@ make
cd ..
./bootstrap -DCMAKE_BUILD_TYPE=Debug
cd build && make

# Run the test suite on the specific commit
make installcheck
```

Expand Down
132 changes: 132 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,30 @@

## TimescaleDB

## Running the Test Suite

To build and run the test suite on the specific commit, use the following commands:

```bash
./bootstrap -DCMAKE_BUILD_TYPE=Debug
cd build && make
make installcheck
```

It is important to run the full test suite before opening a pull request to ensure that all changes pass successfully on your local machine.

## Running the Test Suite

To build and run the test suite on the specific commit, use the following commands:

```bash
./bootstrap -DCMAKE_BUILD_TYPE=Debug
cd build && make
make installcheck
```

It is important to run the full test suite before opening a pull request to ensure that all changes pass successfully on your local machine.

TimescaleDB is an open-source database designed to make SQL scalable for
time-series data. It is engineered up from PostgreSQL and packaged as a
PostgreSQL extension, providing automatic partitioning across time and space
Expand Down Expand Up @@ -35,6 +59,30 @@ or [Timescale License (TSL)](https://github.com/timescale/timescaledb/blob/main/

### Using TimescaleDB

## Running the Test Suite

To build and run the test suite on the specific commit, use the following commands:

```bash
./bootstrap -DCMAKE_BUILD_TYPE=Debug
cd build && make
make installcheck
```

It is important to run the full test suite before opening a pull request to ensure that all changes pass successfully on your local machine.

## Running the Test Suite

To build and run the test suite on the specific commit, use the following commands:

```bash
./bootstrap -DCMAKE_BUILD_TYPE=Debug
cd build && make
make installcheck
```

It is important to run the full test suite before opening a pull request to ensure that all changes pass successfully on your local machine.

TimescaleDB scales PostgreSQL for time-series data via automatic
partitioning across time and space (partitioning key), yet retains
the standard PostgreSQL interface.
Expand Down Expand Up @@ -88,6 +136,30 @@ SELECT create_hypertable('conditions', 'time');

#### Inserting and querying data

#### Running the Test Suite

To build and run the test suite on the specific commit, use the following commands:

```bash
./bootstrap -DCMAKE_BUILD_TYPE=Debug
cd build && make
make installcheck
```

It is important to run the full test suite before opening a pull request to ensure that all changes pass successfully on your local machine.

#### Running the Test Suite

To build and run the test suite on the specific commit, use the following commands:

```bash
./bootstrap -DCMAKE_BUILD_TYPE=Debug
cd build && make
make installcheck
```

It is important to run the full test suite before opening a pull request to ensure that all changes pass successfully on your local machine.

Inserting data into the hypertable is done via normal SQL commands:

```sql
Expand Down Expand Up @@ -135,6 +207,42 @@ so you can power your application with TimescaleDB without the management overhe

### Useful tools

## Running the Test Suite

To build and run the test suite on the specific commit, use the following commands:

```bash
./bootstrap -DCMAKE_BUILD_TYPE=Debug
cd build && make
make installcheck
```

It is crucial to run the full test suite before opening a pull request to ensure that all changes pass successfully on your local machine.

## Running the Test Suite

To build and run the test suite on the specific commit, use the following commands:

```bash
./bootstrap -DCMAKE_BUILD_TYPE=Debug
cd build && make
make installcheck
```

It is crucial to run the full test suite before opening a pull request to ensure that all changes pass successfully on your local machine.

## Running the Test Suite

To build and run the test suite on the specific commit, use the following commands:

```bash
./bootstrap -DCMAKE_BUILD_TYPE=Debug
cd build && make
make installcheck
```

It is crucial to run the full test suite before opening a pull request to ensure that all changes pass successfully on your local machine.

- [timescaledb-tune](https://github.com/timescale/timescaledb-tune): Helps
set your PostgreSQL configuration settings based on your system's resources.
- [timescaledb-parallel-copy](https://github.com/timescale/timescaledb-parallel-copy):
Expand All @@ -151,6 +259,30 @@ multiple workers.

### Community & help

## Running the Test Suite

To build and run the test suite on the specific commit, use the following commands:

```bash
./bootstrap -DCMAKE_BUILD_TYPE=Debug
cd build && make
make installcheck
```

It is essential to run the full test suite before opening a pull request to ensure that all changes pass successfully on your local machine.

## Running the Test Suite

To build and run the test suite on the specific commit, use the following commands:

```bash
./bootstrap -DCMAKE_BUILD_TYPE=Debug
cd build && make
make installcheck
```

It is essential to run the full test suite before opening a pull request to ensure that all changes pass successfully on your local machine.

- [Slack Channel](https://slack.timescale.com)
- [Github Issues](https://github.com/timescale/timescaledb/issues)
- [Timescale Support](https://tsdb.co/GitHubTimescaleSupport): see support options (community & subscription)
Expand Down
Loading