Skip to content

Commit

Permalink
Updated Github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
wakaleo committed Dec 22, 2023
1 parent 3ed6744 commit 7265e96
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 41 deletions.
31 changes: 0 additions & 31 deletions .github/workflows/gradle.yml

This file was deleted.

8 changes: 7 additions & 1 deletion .github/workflows/living-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
Expand All @@ -35,6 +34,13 @@ jobs:
run: mvn -B verify --file pom.xml

- name: Deploy
env:
BROWSERSTACK_KEY: ${{ secrets.BROWSERSTACK_KEY }}
BROWSERSTACK_USER: ${{ secrets.BROWSERSTACK_USER }}
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
LT_USERNAME: ${{ secrets.LT_USERNAME }}
LT_ACCESS_KEY: ${{ secrets.LT_ACCESS_KEY }}
uses: JamesIves/github-pages-deploy-action@4.1.1
with:
branch: gh-pages # The branch the action should deploy to.
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,13 @@ jobs:
npx @puppeteer/browsers install chrome@stable
- name: Build with Maven
env:
BROWSERSTACK_KEY: ${{ secrets.BROWSERSTACK_KEY }}
BROWSERSTACK_USER: ${{ secrets.BROWSERSTACK_USER }}
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
LT_USERNAME: ${{ secrets.LT_USERNAME }}
LT_ACCESS_KEY: ${{ secrets.LT_ACCESS_KEY }}
run: mvn verify --file pom.xml

- name: Deploy
Expand Down
17 changes: 8 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ buildscript {
}
}
dependencies {
classpath "net.serenity-bdd:serenity-gradle-plugin:4.0.14"
classpath "net.serenity-bdd:serenity-gradle-plugin:4.0.30"
}
}

Expand All @@ -22,15 +22,15 @@ apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: "net.serenity-bdd.serenity-gradle-plugin"

sourceCompatibility = 16
targetCompatibility = 16
sourceCompatibility = 17
targetCompatibility = 17

ext {
SERENITY_VERSION = '4.0.14'
JUNIT_PLATFORM_VERSION = '1.10.0'
SERENITY_VERSION = '4.0.30'
JUNIT_PLATFORM_VERSION = '1.10.1'
CUCUMBER_JUNIT_PLATFORM_VERSION = '7.14.0'
JUNIT_JUPITER_VERSION = '5.10.0'
JUNIT_VINTAGE_VERSION = '5.10.0'
JUNIT_JUPITER_VERSION = '5.10.1'
JUNIT_VINTAGE_VERSION = '5.10.1'
LOGBACK_CLASSIC_VERSION = '1.2.10'
ASSERTJ_CORE_VERSION = '3.22.0'
}
Expand All @@ -55,9 +55,8 @@ dependencies {

test {
useJUnitPlatform()
// testLogging.showStandardStreams = true
systemProperties System.getProperties()
maxParallelForks = 8
maxParallelForks = 2
}

serenity {
Expand Down

0 comments on commit 7265e96

Please sign in to comment.