Skip to content

Commit

Permalink
Merge pull request #26 from axonivy-market/raise-to-10.0.0-SNAPSHOT
Browse files Browse the repository at this point in the history
Introduce dev-build; checking latest engine compatibility
  • Loading branch information
ivy-rew authored May 2, 2023
2 parents 53f3abf + f45b6a8 commit cee6c9c
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,16 @@ name: CI-Build

on:
push:
pull_request:
workflow_dispatch:
workflow_call:
inputs:
mvnArgs:
type: string
required: false
schedule:
- cron: '21 21 * * *'


jobs:
build:
runs-on: ubuntu-20.04
Expand All @@ -33,7 +38,7 @@ jobs:
sudo useradd -s /bin/bash -d /home/usr -m -g ${sshGroup} -p $(echo pwd | openssl passwd -1 -stdin) usr
- name: Build with Maven
run: mvn clean verify --batch-mode
run: mvn clean verify --batch-mode ${{ inputs.mvnArgs }}

- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action@v1
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Dev-Build

on:
push:
schedule:
- cron: '21 21 * * *'
workflow_dispatch:

jobs:
build:
uses: ./.github/workflows/ci.yml
with:
mvnArgs: '"-Divy.engine.download.url=https://dev.axonivy.com/permalink/dev/axonivy-engine.zip" "-Divy.engine.version=(10.0.0,]"'

0 comments on commit cee6c9c

Please sign in to comment.