Skip to content

Commit

Permalink
Generate dummy error code report (#153)
Browse files Browse the repository at this point in the history
* Generate dummy error code report

* Run PK fix

* Rename luacov report artifact

* Update release date
  • Loading branch information
kaklakariada authored Apr 11, 2024
1 parent b84aa2f commit 5ae6440
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/ci-build.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .github/workflows/release.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 15 additions & 1 deletion .project-keeper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ build:
id: archive-luacov-report
uses: actions/upload-artifact@v4
with:
name: luacov.report.out
name: luacov.report.out-exasol-${{ matrix.exasol_db_version }}
path: target/luacov-reports/luacov.report.out
if-no-files-found: error
- action: REPLACE
Expand All @@ -61,6 +61,13 @@ build:
name: Skip SonarCloud analysis
id: sonar-analysis
run: echo "SonarCloud analysis is skipped because the project is written in Lua."
# Generate dummy error code reports. Error code crawler does not support Lua projects yet.
- action: INSERT_AFTER
stepId: build-pk-verify
content:
name: Generate dummy error code report
id: generate-dummy-error-code-report
run: echo '{"$schema":"https://schemas.exasol.com/error_code_report-1.0.0.json","errorCodes":[]}' > target/error_code_report.json

- name: release.yml
stepCustomizations:
Expand All @@ -86,6 +93,13 @@ build:
name: Install Lua dependencies
id: install-lua-dependencies
run: luarocks --local install *.rockspec --deps-only
# Generate dummy error code reports. Error code crawler does not support Lua projects yet.
- action: INSERT_AFTER
stepId: build
content:
name: Generate dummy error code report
id: generate-dummy-error-code-report
run: echo '{"$schema":"https://schemas.exasol.com/error_code_report-1.0.0.json","errorCodes":[]}' > target/error_code_report.json

excludes:
# Project is written in Lua, no need to test with Java 17
Expand Down
2 changes: 1 addition & 1 deletion doc/changes/changes_1.5.4.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Row Level Security lua 1.5.4, released 2024-04-10
# Row Level Security lua 1.5.4, released 2024-04-11

Code name: Fix CVE-2024-29025 in io.netty:netty-codec-http:jar:4.1.107.Final:test

Expand Down

0 comments on commit 5ae6440

Please sign in to comment.