Skip to content

Merge pull request #2093 from wso2/rosensilva-patch-2 #2315

Merge pull request #2093 from wso2/rosensilva-patch-2

Merge pull request #2093 from wso2/rosensilva-patch-2 #2315

Workflow file for this run

name: Run integration tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Synapse
uses: actions/checkout@v1
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build Synapse with Maven
run: mvn clean install --file pom.xml
- name: Get synapse version
run: mvn help:evaluate -Dexpression=project.version -q -DforceStdout > ../SYNAPSE_VERSION_FILE
- name: Print synapse version
run: |
echo $(cat ../SYNAPSE_VERSION_FILE)
- name: Checkout MI
uses: actions/checkout@v1
with:
repository: wso2/micro-integrator
ref: refs/heads/master
- name: Build MI with Maven
run: mvn clean install -Dsynapse.version=$(cat ../SYNAPSE_VERSION_FILE) --file ../micro-integrator/pom.xml