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

Try to fix build #92

Closed
wants to merge 4 commits into from
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
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
OSX_LINUX_WINDOWS:
strategy:
matrix:
os: [ macos-latest, ubuntu-latest, windows-latest ]
os: [ macos-latest, mulesoft-labs-ubuntu, mulesoft-labs-windows ]
include:
- os: windows-latest
- os: mulesoft-labs-windows
script_name: windows
- os: ubuntu-latest
- os: mulesoft-labs-ubuntu
script_name: linux
- os: macos-latest
script_name: osx
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
#Run regression tests
- name: Run regression test 2.6
run: |
./gradlew --stacktrace -PweaveTestSuiteVersion=2.6.0-SNAPSHOT native-cli-integration-tests:test
./gradlew --stacktrace -PweaveTestSuiteVersion=2.6.1-SNAPSHOT native-cli-integration-tests:test
shell: bash
#Run regression tests
- name: Run regression test 2.5.x
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
RELEASE_EXTENSION:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
os: [macos-latest, mulesoft-ubuntu, mulesoft-windows]
include:
- os: windows-latest
- os: mulesoft-windows
script_name: windows
- os: ubuntu-latest
- os: mulesoft-ubuntu
script_name: linux
- os: macos-latest
script_name: osx
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
weaveVersion=2.6.0-SNAPSHOT
weaveTestSuiteVersion=2.6.0-SNAPSHOT
weaveVersion=2.6.1-SNAPSHOT
weaveTestSuiteVersion=2.6.1-SNAPSHOT
nativeVersion=100.100.100
scalaVersion=2.12.15
ioVersion=1.0.0-SNAPSHOT
Expand Down
2 changes: 1 addition & 1 deletion native-cli/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ dependencies {
implementation group: 'org.mule.weave', name: 'xmlschema-module', version: weaveVersion
implementation group: 'org.mule.weave', name: 'http-module', version: ioVersion
implementation group: 'org.mule.weave', name: 'process-module', version: ioVersion
implementation group: 'org.mule.weave', name: 'migrant', version: weaveVersion
implementation group: 'org.mule.weave', name: 'migrant', version: '2.6.0-SNAPSHOT'
implementation(group: 'org.mule.weave', name: 'http-netty-module', version: ioVersion) {
exclude group: 'org.slf4j'
}
Expand Down
Loading