-
Notifications
You must be signed in to change notification settings - Fork 315
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1524 from jplag/develop
Merge develop into main
- Loading branch information
Showing
612 changed files
with
59,378 additions
and
39,420 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 |
---|---|---|
@@ -1,2 +1,5 @@ | ||
# Set the default behavior, in case people don't have core.autocrlf set. | ||
* text=auto | ||
|
||
*.emfatic text | ||
*.treeview text |
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,36 @@ | ||
name: Documentation | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
tags: "v**" | ||
paths: | ||
- 'docs/**' | ||
- '.github/workflows/docs.yml' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
docs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.SDQ_DEV_DEPLOY_TOKEN }} | ||
- uses: actions/checkout@v4 | ||
with: | ||
repository: ${{ github.repository }}.wiki | ||
path: wiki | ||
token: ${{ secrets.SDQ_DEV_DEPLOY_TOKEN }} | ||
|
||
- name: Remove contents in Wiki | ||
working-directory: wiki | ||
run: ls -A1 | grep -v '.git' | xargs rm -r | ||
|
||
- name: Copy Wiki from Docs folder | ||
run: cp -r ./docs/. ./wiki | ||
|
||
- name: Deploy 🚀 | ||
uses: stefanzweifel/git-auto-commit-action@v5 | ||
with: | ||
repository: wiki |
Binary file not shown.
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
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
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
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,113 @@ | ||
name: Report Viewer Demo Deployment | ||
|
||
on: | ||
workflow_dispatch: # Use this to dispatch from the Actions Tab | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build-jar: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout 🛎️ | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: 21 | ||
distribution: 'temurin' | ||
|
||
- name: Build Assembly | ||
run: mvn clean package assembly:single | ||
|
||
- name: Upload Assembly | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: "JPlag" | ||
path: "cli/target/jplag-*-jar-with-dependencies.jar" | ||
|
||
|
||
run-example: | ||
needs: build-jar | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout 🛎️ | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: 21 | ||
distribution: 'temurin' | ||
|
||
- name: Get JAR | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: JPlag | ||
|
||
- name: Copy and unzip submissions | ||
run: unzip ./.github/workflows/files/progpedia.zip | ||
|
||
- name: Rename jar | ||
run: mv *.jar ./jplag.jar | ||
|
||
- name: Run JPlag | ||
run: java -jar jplag.jar ACCEPTED -bc base -r example | ||
|
||
- name: Upload Result | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: "Result" | ||
path: "example.zip" | ||
|
||
|
||
build-and-deploy: | ||
needs: run-example | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout 🛎️ | ||
uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: "18" | ||
|
||
- name: Set version of Report Viewer | ||
shell: bash | ||
run: | | ||
VERSION=$(grep "<revision>" pom.xml | grep -oPm1 "(?<=<revision>)[^-|<]+") | ||
MAJOR=$(echo $VERSION | cut -d '.' -f 1) | ||
MINOR=$(echo $VERSION | cut -d '.' -f 2) | ||
PATCH=$(echo $VERSION | cut -d '.' -f 3) | ||
json=$(cat report-viewer/src/version.json) | ||
json=$(echo "$json" | jq --arg MAJOR "$MAJOR" --arg MINOR "$MINOR" --arg PATCH "$PATCH" '.report_viewer_version |= { "major": $MAJOR | tonumber, "minor": $MINOR | tonumber, "patch": $PATCH | tonumber }') | ||
echo "$json" > report-viewer/src/version.json | ||
echo "Version of Report Viewer:" | ||
cat report-viewer/src/version.json | ||
- name: Download Results | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: Result | ||
path: report-viewer/public | ||
|
||
- name: Install and Build 🔧 | ||
working-directory: report-viewer | ||
run: | | ||
npm install | ||
npm run build-demo | ||
- name: Deploy 🚀 | ||
uses: JamesIves/[email protected] | ||
with: | ||
branch: gh-pages | ||
folder: report-viewer/dist | ||
repository-name: JPlag/Demo | ||
token: ${{ secrets.SDQ_DEV_DEPLOY_TOKEN }} | ||
clean: true | ||
single-commit: true | ||
|
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
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,58 @@ | ||
name: Report Viewer e2e Test | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
types: [opened, synchronize, reopened] | ||
paths: | ||
- ".github/workflows/report-viewer-e2e.yml" | ||
- "report-viewer/**" | ||
|
||
jobs: | ||
pre_job: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
should_skip: ${{ steps.skip_check.outputs.should_skip }} | ||
steps: | ||
- id: skip_check | ||
uses: fkirc/skip-duplicate-actions@master | ||
with: | ||
concurrent_skipping: 'same_content_newer' | ||
skip_after_successful_duplicate: 'true' | ||
|
||
test: | ||
needs: pre_job | ||
if: ${{ needs.pre_job.outputs.should_skip != 'true' }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout 🛎️ | ||
uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: "18" | ||
|
||
- name: Install and Build 🔧 | ||
working-directory: report-viewer | ||
run: | | ||
npm install | ||
npm run build | ||
- name: Install playwright 🔧 | ||
working-directory: report-viewer | ||
run: npx playwright install --with-deps | ||
|
||
- name: Run tests 🧪 | ||
working-directory: report-viewer | ||
run: | | ||
npm run test:e2e | ||
- name: Upload test results 📤 | ||
uses: actions/upload-artifact@v4 | ||
if: always() | ||
with: | ||
name: test-results | ||
path: | | ||
report-viewer/test-results | ||
report-viewer/playwright-report | ||
retention-days: 30 |
Oops, something went wrong.