KEYCLOAK-16145 Add adapter-tests to GitHub Actions
This commit is contained in:
parent
8060e3b3ac
commit
6f6c21333b
1 changed files with 23 additions and 0 deletions
23
.github/workflows/ci.yml
vendored
23
.github/workflows/ci.yml
vendored
|
@ -49,6 +49,29 @@ jobs:
|
|||
run: mvn clean install -B -Pauth-server-wildfly -DskipTests -f testsuite/pom.xml
|
||||
- name: Run base tests
|
||||
run: mvn clean install -B -Pauth-server-wildfly -f testsuite/integration-arquillian/tests/base/pom.xml | misc/log/trimmer.sh; exit ${PIPESTATUS[0]}
|
||||
test-adapter:
|
||||
name: Test Adapter
|
||||
needs: build
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
MAVEN_OPTS: -Xmx1024m
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-java@v1
|
||||
with:
|
||||
java-version: 1.8
|
||||
- name: Download Maven Repo
|
||||
uses: actions/download-artifact@v1
|
||||
with:
|
||||
name: maven-repo
|
||||
path: .
|
||||
- name: Extract Maven Repo
|
||||
shell: bash
|
||||
run: tar -xzvf maven-repo.tgz -C ~
|
||||
- name: Build testsuite
|
||||
run: mvn clean install -B -nsu -Pauth-server-wildfly -DskipTests -f testsuite/integration-arquillian/pom.xml
|
||||
- name: Run adapter tests
|
||||
run: mvn clean install -B -nsu -Pauth-server-wildfly -f testsuite/integration-arquillian/tests/base/pom.xml "-Dtest=org.keycloak.testsuite.adapter.**.*Test,!org.keycloak.testsuite.adapter.**.authorization**.*Test" | misc/log/trimmer.sh; exit ${PIPESTATUS[0]}
|
||||
test-undertow-map:
|
||||
name: Test undertow - map provider
|
||||
needs: build
|
||||
|
|
Loading…
Reference in a new issue