Skip to content

Commit

Permalink
Let timescaledb branch name appear
Browse files Browse the repository at this point in the history
in the job names.
  • Loading branch information
pallavisontakke committed Feb 5, 2025
1 parent 33ec3e0 commit c8a8307
Show file tree
Hide file tree
Showing 13 changed files with 20 additions and 16 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/abi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
run: python .github/gh_config_reader.py

abi_test:
name: ABI Test ${{ matrix.dir }} PG${{ matrix.pg }}
name: ABI Test ${{ matrix.dir }} PG${{ matrix.pg }} timescaledb${{ github.event.inputs.branch }}
runs-on: ubuntu-latest
needs: config
strategy:
Expand All @@ -72,6 +72,8 @@ jobs:

- name: Checkout TimescaleDB
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.branch }}

- name: Build extension with ${{ matrix.builder }}
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/apt-arm-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ name: APT ARM64 packages
default: 'main'
jobs:
apt_tests:
name: APT ARM64 ${{ matrix.image }} PG${{ matrix.pg }}
name: APT ARM64 ${{ matrix.image }} PG${{ matrix.pg }} timescaledb${{ github.event.inputs.branch }}
runs-on: ubuntu-22.04
strategy:
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/apt-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ name: APT packages
default: 'main'
jobs:
apt_tests:
name: APT ${{ matrix.image }} PG${{ matrix.pg }} ${{ matrix.license }}
name: APT ${{ matrix.image }} PG${{ matrix.pg }} timescaledb${{ github.event.inputs.branch }} ${{ matrix.license }}
runs-on: ubuntu-latest
container:
image: ${{ matrix.image }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverity.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
run: echo $OLD_MINOR_VERSION_BRANCH

coverity:
name: Coverity ${{ matrix.pg }}
name: Coverity ${{ matrix.pg }} ${{ matrix.timescaledb_branch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ name: Test Docker images
default: 'main'
jobs:
docker_tests:
name: ${{ matrix.image }}
name: ${{ matrix.image }} timescaledb${{ github.event.inputs.branch }}
runs-on: ubuntu-latest
services:
ts:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/homebrew.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ jobs:
# checkout code to get version information
- uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.branch }}
with:
ref: ${{ github.event.inputs.branch }}

- name: Test Installation
- name: Test Installation for timescaledb${{ github.event.inputs.branch }}
run: |
psql -X -c "CREATE EXTENSION timescaledb;" postgres
psql -X -c "SELECT extname,extversion,version() FROM pg_extension WHERE extname='timescaledb';" postgres
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linux-32bit-build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ jobs:
with:
ref: ${{ github.event.inputs.branch }}

- name: Read configuration
- name: Read configuration
id: setter
run: python .github/gh_config_reader.py

regress_linux_32bit:
name: PG${{ matrix.pg }} ${{ matrix.build_type }} linux-i386
name: PG${{ matrix.pg }} ${{ matrix.build_type }} linux-i386 timescaledb${{ github.event.inputs.branch }}
runs-on: ubuntu-latest
needs: config
container:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rpm-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ name: RPM packages
default: 'main'
jobs:
rpm_tests:
name: RPM ${{ matrix.image }} PG${{ matrix.pg }} ${{ matrix.license }}
name: RPM ${{ matrix.image }} PG${{ matrix.pg }} ${{ matrix.license }} timescaledb${{ github.event.inputs.branch }}
runs-on: ubuntu-latest
container:
image: ${{ matrix.image }}
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/sanitizer-build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
sanitizer:
# Change the JOB_NAME variable below when changing the name.
# Don't use the env variable here because the env context is not accessible.
name: PG${{ matrix.pg }} Sanitizer ${{ matrix.os }}
name: PG${{ matrix.pg }} Sanitizer ${{ matrix.os }} timescaledb${{ github.event.inputs.branch }}
runs-on: ${{ matrix.os }}
needs: config
strategy:
Expand All @@ -93,6 +93,8 @@ jobs:
- name: Checkout TimescaleDB
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.branch }}

# We are going to rebuild Postgres daily, so that it doesn't suddenly break
# ages after the original problem.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/snapshot-abi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: python .github/gh_config_reader.py

abi_snapshot_test:
name: ABI Snapshot Test PG${{ matrix.pg }}
name: ABI Snapshot Test PG${{ matrix.pg }} timescaledb${{ github.event.inputs.branch }}
runs-on: ubuntu-latest
needs: config

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sqlsmith.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
env:
PG_SRC_DIR: pgbuild
PG_INSTALL_DIR: postgresql
JOB_NAME: SQLsmith PG${{ matrix.pg }}
JOB_NAME: SQLsmith PG${{ matrix.pg }} timescaledb${{ github.event.inputs.branch }}

steps:
- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
build:
# Change the JOB_NAME variable below when changing the name.
name: PG${{ matrix.pg }} ${{ matrix.build_type }} ${{ matrix.os }}
name: PG${{ matrix.pg }} ${{ matrix.build_type }} ${{ matrix.os }} timescaledb${{ github.event.inputs.branch }}
runs-on: ${{ matrix.os }}
needs: config
strategy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
run: python .github/gh_config_reader.py

build:
name: Windows package PG${{ matrix.test }}
name: Windows package PG${{ matrix.test }} timescaledb${{ github.event.inputs.branch }}
runs-on: ${{ matrix.os }}
needs: config
strategy:
Expand Down

0 comments on commit c8a8307

Please sign in to comment.