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

Update CODEOWNERS #93

Merged
merged 6 commits into from
Apr 4, 2024
Merged
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
4 changes: 3 additions & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
* @mulesoft-labs/team-data-weave
#GUSINFO:MS DataWeave,MS DataWeave
* @mulesoft-labs/team-data-weave
#ECCN:Open Source
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
OSX_LINUX_WINDOWS:
strategy:
matrix:
os: [ macos-latest, ubuntu-latest, windows-latest ]
os: [ ubuntu-latest, windows-latest, macos-latest ]
include:
- os: windows-latest
script_name: windows
Expand Down Expand Up @@ -52,14 +52,14 @@ jobs:
./gradlew --stacktrace build
shell: bash
#Run regression tests
- name: Run regression test 2.6
- name: Run regression test 2.7
run: |
./gradlew --stacktrace -PweaveTestSuiteVersion=2.6.0-SNAPSHOT native-cli-integration-tests:test
./gradlew --stacktrace -PweaveTestSuiteVersion=2.7.0-SNAPSHOT native-cli-integration-tests:test
shell: bash
#Run regression tests
- name: Run regression test 2.5.x
- name: Run regression test 2.6
run: |
./gradlew --stacktrace -PweaveTestSuiteVersion=2.5.0 native-cli-integration-tests:test
./gradlew --stacktrace -PweaveTestSuiteVersion=2.6.1 native-cli-integration-tests:test
shell: bash
- name: Run regression test 2.4
run: |
Expand Down
6 changes: 3 additions & 3 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.7.0-SNAPSHOT
weaveTestSuiteVersion=2.7.0-SNAPSHOT
nativeVersion=100.100.100
scalaVersion=2.12.15
ioVersion=1.0.0-SNAPSHOT
Expand All @@ -8,4 +8,4 @@ graalvmVersion=22.3.3
scalaTestVersion=3.2.15
scalaTestPluginVersion=0.32

#org.gradle.jvmargs=-Dfile.encoding=utf-8
#org.gradle.jvmargs=-Dfile.encoding=utf-8
4 changes: 2 additions & 2 deletions 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 Expand Up @@ -187,4 +187,4 @@ nativeCompile.dependsOn("shadowJar")

tasks.named("nativeCompile") {
classpathJar = file("${buildDir}/libs/native-cli-" + nativeVersion + "-all.jar")
}
}
Loading