File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed
Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 5757 run : bash GitHubActions/build_sqlite_fdw.sh ${{ matrix.pg }}
5858
5959 - name : execute sqlite_fdw test
60- run : bash GitHubActions/execute_test.sh ${{ matrix.pg }}
60+ run : bash GitHubActions/execute_test.sh ${{ matrix.pg }}
61+
62+ - name : download output files (regression.diffs)
63+ if : failure()
64+ uses : actions/upload-artifact@v4
65+ with :
66+ name : ${{ matrix.pg }}-test-results
67+ path : |
68+ workdir/postgresql-${{ matrix.pg }}/contrib/sqlite_fdw/regression.diffs
69+ workdir/postgresql-${{ matrix.pg }}/contrib/sqlite_fdw/regression.out
70+ workdir/postgresql-${{ matrix.pg }}/contrib/sqlite_fdw/results
71+ retention-days : 7
72+
Original file line number Diff line number Diff line change @@ -8,3 +8,6 @@ Scripts in this directory (GitHubActions/*.sh) are referred by CI.yml.
88
99The regression test will be executed for multi-versions of PostgreSQL.
1010Target versions are determined automatically based on directory names in "sql" directory.
11+
12+ If the regression test failed, test result files (result directory, regression.diff amd regression.out) are uploaded as artifacts.
13+ 7 days later, artifact files will be deleted.
You can’t perform that action at this time.
0 commit comments