Skip to content

Commit dd2fb3a

Browse files
authored
#62: Added error report to release build. (#63)
1 parent 9279c3b commit dd2fb3a

3 files changed

Lines changed: 23 additions & 8 deletions

File tree

.github/workflows/ci-build.yml

Lines changed: 1 addition & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/release.yml

Lines changed: 8 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.project-keeper.yml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,7 @@ build:
3333
run: |
3434
echo '{
3535
"errorReportVersion" : "1.0",
36-
"errorCodes": [
37-
{"identifier": "E-DUMMY-1"}
38-
]
36+
"errorCodes": []
3937
}' > target/error_code_report.json
4038
# Check the shell scripts
4139
- action: INSERT_AFTER
@@ -77,4 +75,16 @@ build:
7775
id: install-lua
7876
run: |
7977
tools/install_luarocks.sh --lua-version=5.4
80-
luarocks --lua-version=5.4 --local install --only-deps *.rockspec
78+
luarocks --lua-version=5.4 --local install --only-deps *.rockspec
79+
# Create a dummy Exasol error_code_report.json file with required fields:
80+
- action: INSERT_AFTER
81+
job: "release"
82+
stepId: build
83+
content:
84+
name: "Create dummy error report"
85+
id: error-report
86+
run: |
87+
echo '{
88+
"errorReportVersion" : "1.0",
89+
"errorCodes": []
90+
}' > target/error_code_report.json

0 commit comments

Comments
 (0)