Skip to content
Snippets Groups Projects
Commit c52b95f8 authored by Mick Jordan's avatar Mick Jordan
Browse files

separate native distributions by architecture

parent 852b2372
Branches
No related tags found
No related merge requests found
...@@ -437,6 +437,18 @@ suite = { ...@@ -437,6 +437,18 @@ suite = {
"dependencies" : ["com.oracle.truffle.r.test.native"], "dependencies" : ["com.oracle.truffle.r.test.native"],
"distDependencies" : ["FASTR_NATIVE_DEV"], "distDependencies" : ["FASTR_NATIVE_DEV"],
"exclude" : ["GNUR", "GNU_ICONV"], "exclude" : ["GNUR", "GNU_ICONV"],
"os_arch" : {
"linux" : {
"amd64" : {
"path" : "mxbuild/dists/linux/amd64/fastr-unit-tests-native.jar",
}
},
"darwin" : {
"amd64" : {
"path" : "mxbuild/dists/darwin/amd64/fastr-unit-tests-native.jar",
},
},
},
}, },
"FASTR_NATIVE_DEV": { "FASTR_NATIVE_DEV": {
...@@ -446,12 +458,36 @@ suite = { ...@@ -446,12 +458,36 @@ suite = {
"GNUR", "GNUR",
"GNU_ICONV", "GNU_ICONV",
], ],
"os_arch" : {
"linux" : {
"amd64" : {
"path" : "mxbuild/dists/linux/amd64/fastr-native-dev.jar",
},
},
"darwin" : {
"amd64" : {
"path" : "mxbuild/dists/darwin/amd64/fastr-native-dev.jar",
},
},
},
}, },
"FASTR_RELEASE": { "FASTR_RELEASE": {
"description" : "a binary release of FastR", "description" : "a binary release of FastR",
"dependencies" : ["com.oracle.truffle.r.release"], "dependencies" : ["com.oracle.truffle.r.release"],
"os_arch" : {
"linux" : {
"amd64" : {
"path" : "mxbuild/dists/linux/amd64/fastr-release.jar",
}
},
"darwin" : {
"amd64" : {
"path" : "mxbuild/dists/darwin/amd64/fastr-release.jar",
}
},
},
}, },
}, },
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment