Skip to content

Commit 3f59dd5

Browse files
committed
Adds matrix parameter as env variable
1 parent 2065e11 commit 3f59dd5

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/build-package.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,18 +43,26 @@ jobs:
4343
sudo make -C tools install
4444
setup_apt
4545
nuke_pg
46+
env:
47+
PGVERSION: {{ matrix.PGVERSION }}
4648

4749
- name: Install
4850
run: |
4951
install_uncrustify
5052
install_pg
53+
env:
54+
PGVERSION: {{ matrix.PGVERSION }}
5155

5256
- name: Before Script
5357
run: |
5458
config_and_start_cluster
5559
echo "extra_float_digits = 0" >> "/etc/postgresql/${PGVERSION}/test/postgresql.conf"
5660
pg_ctlcluster "${PGVERSION}" test restart
61+
env:
62+
PGVERSION: {{ matrix.PGVERSION }}
5763

5864
- name: Script
5965
run: |
6066
pg_travis_test
67+
env:
68+
PGVERSION: {{ matrix.PGVERSION }}

0 commit comments

Comments
 (0)