Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MARP-626 Introduce DEV-10 build for the connectors working on ivy 10 #25

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/dev-10.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Dev-10-Build

on:
workflow_call:
inputs:
mvnArgs:
type: string
required: false
ivyVersion:
type: string
default: nightly-10.0
description: the ivy version to use (e.g. dev/nightly/nightly-10.0/...)
secrets:
mvnArgs:
required: false
push:
branches:
- release/10.0

jobs:
build:
uses: axonivy-market/github-workflows/.github/workflows/ci.yml@v2
with:
mvnArgs: '"-Divy.engine.download.url=https://dev.axonivy.com/permalink/${{ inputs.ivyVersion }}/axonivy-engine.zip" "-Divy.engine.version=(10.0.0,]" ${{ inputs.mvnArgs }}'
secrets:
mvnArgs: '${{ secrets.mvnArgs }}'
5 changes: 4 additions & 1 deletion .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,13 @@ on:
ivyVersion:
type: string
default: dev
description: the ivy version to use (e.g. dev/nightly/nightly-10/...)
description: the ivy version to use (e.g. dev/nightly/nightly-10.0/...)
secrets:
mvnArgs:
required: false
push:
branches:
- master

jobs:
build:
Expand Down