-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'github/develop' into develop
- Loading branch information
Showing
7 changed files
with
33 additions
and
60 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 |
---|---|---|
|
@@ -53,11 +53,11 @@ jobs: | |
with: | ||
node-version-file: '.nvmrc' | ||
|
||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v3 | ||
- name: Set up JDK 21 | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: adopt | ||
java-version: 11 | ||
distribution: temurin | ||
java-version: 21 | ||
|
||
- name: Install node dependencies (oeq-rest-api) | ||
working-directory: oeq-ts-rest-api | ||
|
@@ -179,28 +179,6 @@ jobs: | |
name: Storybook | ||
path: react-front-end/storybook.tar | ||
|
||
build_import_export_tool: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: adopt | ||
java-version: 11 | ||
|
||
- name: Build | ||
working-directory: import-export-tool | ||
run: | | ||
./gradlew build | ||
- name: Save primary artefacts | ||
uses: actions/[email protected] | ||
with: | ||
name: ImportExportTools | ||
path: import-export-tool/build/libs/ | ||
|
||
functional_testing: | ||
needs: build_and_check | ||
|
||
|
@@ -244,11 +222,11 @@ jobs: | |
ffmpeg \ | ||
libimage-exiftool-perl | ||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v3 | ||
- name: Set up JDK 21 | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: adopt | ||
java-version: 11 | ||
distribution: temurin | ||
java-version: 21 | ||
|
||
- uses: actions/checkout@v4 | ||
|
||
|
@@ -274,15 +252,14 @@ jobs: | |
- name: Setup for tests | ||
run: | | ||
./sbt -jvm-opts autotest/.jvmopts "project autotest" \ | ||
./sbt "project autotest" \ | ||
installEquella startEquella configureInstall setupForTests | ||
- name: Run Scalacheck tests | ||
# We only need to run these once, so we focus on the New UI | ||
if: matrix.newui | ||
run: | | ||
./sbt -jvm-opts autotest/.jvmopts "project autotest" \ | ||
Tests/test Tests/Serial/test dumpCoverage | ||
./sbt "project autotest" Tests/test Tests/Serial/test dumpCoverage | ||
- name: Save Scalacheck results | ||
if: matrix.newui && failure() | ||
|
@@ -293,8 +270,7 @@ jobs: | |
|
||
- name: Run TestNG tests | ||
run: | | ||
./sbt -jvm-opts autotest/.jvmopts "project autotest" \ | ||
OldTests/test dumpCoverage | ||
./sbt "project autotest" OldTests/test dumpCoverage | ||
- name: Save TestNG Reports | ||
if: failure() | ||
|
@@ -319,8 +295,7 @@ jobs: | |
|
||
- name: Generate coverage report | ||
run: | | ||
./sbt -jvm-opts autotest/.jvmopts "project autotest" \ | ||
coverageReport | ||
./sbt "project autotest" coverageReport | ||
# To save significant time on file upload, we first tar up the directory | ||
# as it contains > 10k files and the artefact upload was taking almost | ||
|
@@ -369,11 +344,11 @@ jobs: | |
ffmpeg \ | ||
libimage-exiftool-perl | ||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v3 | ||
- name: Set up JDK 21 | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: adopt | ||
java-version: 11 | ||
distribution: temurin | ||
java-version: 21 | ||
|
||
- name: Setup node | ||
uses: actions/setup-node@v3 | ||
|
@@ -397,7 +372,7 @@ jobs: | |
- name: Install openEquella | ||
run: | | ||
./sbt -jvm-opts autotest/.jvmopts "project autotest" \ | ||
./sbt "project autotest" \ | ||
installEquella startEquella configureInstall setupForTests | ||
- name: Run tests | ||
|
@@ -408,8 +383,7 @@ jobs: | |
- name: Stop oEQ | ||
if: failure() | ||
run: | | ||
./sbt -jvm-opts autotest/.jvmopts "project autotest" \ | ||
stopEquella | ||
./sbt "project autotest" stopEquella | ||
- name: Save oEQ logs for REST Module | ||
if: failure() | ||
|
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,4 +1,4 @@ | ||
-Xms2048m | ||
-Xmx2048m | ||
-Xms2g | ||
-Xmx4g | ||
-XX:ReservedCodeCacheSize=256m | ||
-XX:MaxMetaspaceSize=512m |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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