-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ac5936c
commit 0131836
Showing
60 changed files
with
898 additions
and
652 deletions.
There are no files selected for viewing
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
name: Integration tests | ||
on: [push] | ||
|
||
jobs: | ||
opera: | ||
env: | ||
DISPLAY: :0 | ||
runs-on: ubuntu-latest | ||
name: Opera | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v2 | ||
with: | ||
distribution: zulu | ||
java-version: 17 | ||
architecture: x64 | ||
- name: Run Opera tests | ||
run: chmod +x ./scripts/opera-verifier.sh && ./scripts/opera-verifier.sh | ||
firefox: | ||
env: | ||
DISPLAY: :0 | ||
runs-on: ubuntu-latest | ||
name: Firefox | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v2 | ||
with: | ||
distribution: zulu | ||
java-version: 17 | ||
architecture: x64 | ||
- name: Run Firefox tests | ||
run: chmod +x ./scripts/firefox-verifier.sh && ./scripts/firefox-verifier.sh | ||
visual: | ||
env: | ||
DISPLAY: :0 | ||
runs-on: ubuntu-latest | ||
name: OpenCV and Tesseract | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v2 | ||
with: | ||
distribution: zulu | ||
java-version: 17 | ||
architecture: x64 | ||
- name: Run visual tests | ||
run: chmod +x ./scripts/visual-verifier.sh && ./scripts/visual-verifier.sh | ||
archetype: | ||
runs-on: ubuntu-latest | ||
name: Maven archetype | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v2 | ||
with: | ||
distribution: zulu | ||
java-version: 17 | ||
architecture: x64 | ||
- name: Create and test archetype | ||
run: chmod +x ./scripts/archetype-verifier.sh && ./scripts/archetype-verifier.sh | ||
android: | ||
runs-on: macos-11 | ||
name: Android | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Set up JDK ${{ matrix.java }} | ||
uses: actions/setup-java@v2 | ||
with: | ||
distribution: zulu | ||
java-version: 17 | ||
architecture: x64 | ||
- name: Run Appium test | ||
uses: reactivecircus/android-emulator-runner@v2 | ||
with: | ||
api-level: 29 | ||
script: chmod +x ./scripts/android-verifier.sh && ./scripts/android-verifier.sh |
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,5 @@ | ||
--add-exports jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED | ||
--add-exports jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED | ||
--add-exports jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED | ||
--add-exports jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED | ||
--add-exports jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
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
Oops, something went wrong.