mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-15 01:53:41 +08:00
Add missing matrix in ignored 32bits regression workflow
This commit is contained in:
parent
e140cc702c
commit
8a95d1b9ee
@ -16,9 +16,28 @@ name: Regression Linux i386
|
|||||||
- 'LICENSE*'
|
- 'LICENSE*'
|
||||||
- NOTICE
|
- NOTICE
|
||||||
jobs:
|
jobs:
|
||||||
|
config:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
outputs:
|
||||||
|
pg_latest: ${{ steps.setter.outputs.PG_LATEST }}
|
||||||
|
pg15_latest: ${{ steps.setter.outputs.PG15_LATEST }}
|
||||||
|
steps:
|
||||||
|
- name: Checkout source code
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: Read configuration
|
||||||
|
id: setter
|
||||||
|
run: python .github/gh_config_reader.py
|
||||||
|
|
||||||
regress_linux_32bit:
|
regress_linux_32bit:
|
||||||
name: PG${{ matrix.pg }} ${{ matrix.build_type }} linux-i386
|
name: PG${{ matrix.pg }} ${{ matrix.build_type }} linux-i386
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
needs: config
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
pg: ${{ fromJson(needs.config.outputs.pg_latest) }}
|
||||||
|
build_type: [ Debug ]
|
||||||
|
include:
|
||||||
|
- pg: ${{ fromJson(needs.config.outputs.pg15_latest) }}
|
||||||
steps:
|
steps:
|
||||||
- run: |
|
- run: |
|
||||||
echo "No build required"
|
echo "No build required"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user