-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#992: added design doc for script options (#477)
fixes exasol/script-languages-release#992 --------- Co-authored-by: Torsten Kilias <[email protected]>
- Loading branch information
Showing
10 changed files
with
569 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: OFT Report | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Run HTML Report | ||
run: | | ||
bash .github/workflows/scripts/run_oft.sh ./exaudfclient base -o html -f ./oft_report.html -t V2,_ || echo failed | ||
- name: Run Plaintext Report | ||
run: | | ||
bash .github/workflows/scripts/run_oft.sh ./exaudfclient base -t V2,_ | ||
- uses: actions/upload-artifact@v4 | ||
if: always() | ||
with: | ||
name: "oft_report.html" | ||
path: oft_report.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#!/bin/bash | ||
|
||
set -o errexit | ||
set -o nounset | ||
set -o pipefail | ||
|
||
oft_version="4.1.0" | ||
|
||
base_dir="$1" | ||
shift 1 | ||
src_dir="$1" | ||
shift 1 | ||
additional_options=$@ | ||
readonly base_dir | ||
readonly oft_jar="$HOME/.m2/repository/org/itsallcode/openfasttrace/openfasttrace/$oft_version/openfasttrace-$oft_version.jar" | ||
|
||
if [ ! -f "$oft_jar" ]; then | ||
echo "Downloading OpenFastTrace $oft_version" | ||
mvn --batch-mode org.apache.maven.plugins:maven-dependency-plugin:3.3.0:get -Dartifact=org.itsallcode.openfasttrace:openfasttrace:$oft_version | ||
fi | ||
|
||
# Trace all | ||
java -jar "$oft_jar" trace \ | ||
$additional_options \ | ||
-a feat,req,dsn \ | ||
"$base_dir/docs" \ | ||
"$base_dir/$src_dir" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+25.9 KB
exaudfclient/docs/diagrams/OveralScriptOptionalsBuildingBlocks.drawio.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13.4 KB
exaudfclient/docs/diagrams/ScriptOptionsExtractorInterface.drawio.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+40.9 KB
exaudfclient/docs/diagrams/ScriptOptionsParserHandlerSequence.drawio.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.