Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
QueryR
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Julien Lopez
QueryR
Commits
817cd7f7
Commit
817cd7f7
authored
7 years ago
by
Gilles Duboscq
Browse files
Options
Downloads
Plain Diff
[GR-5490] Simplify suite structure.
PullRequest: fastr/1393
parents
e4993d13
d35db4c4
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
mx.fastr/mx_fastr.py
+7
-2
7 additions, 2 deletions
mx.fastr/mx_fastr.py
mx.fastr/mx_fastr_dists.py
+7
-38
7 additions, 38 deletions
mx.fastr/mx_fastr_dists.py
mx.fastr/suite.py
+3
-3
3 additions, 3 deletions
mx.fastr/suite.py
with
17 additions
and
43 deletions
mx.fastr/mx_fastr.py
+
7
−
2
View file @
817cd7f7
#
#
# Copyright (c) 2013, 201
7
, Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2013, 201
8
, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
#
# This code is free software; you can redistribute it and/or modify it
# This code is free software; you can redistribute it and/or modify it
...
@@ -27,7 +27,7 @@ import mx
...
@@ -27,7 +27,7 @@ import mx
import
mx_gate
import
mx_gate
import
mx_fastr_pkgs
import
mx_fastr_pkgs
import
mx_fastr_dists
import
mx_fastr_dists
from
mx_fastr_dists
import
FastRReleaseProject
,
FastRNativeRecommendedProject
#pylint: disable=unused-import
from
mx_fastr_dists
import
FastRReleaseProject
#pylint: disable=unused-import
import
mx_copylib
import
mx_copylib
import
mx_fastr_edinclude
import
mx_fastr_edinclude
import
mx_unittest
import
mx_unittest
...
@@ -530,6 +530,11 @@ def nativebuild(args):
...
@@ -530,6 +530,11 @@ def nativebuild(args):
def
mx_post_parse_cmd_line
(
opts
):
def
mx_post_parse_cmd_line
(
opts
):
mx_fastr_dists
.
mx_post_parse_cmd_line
(
opts
)
mx_fastr_dists
.
mx_post_parse_cmd_line
(
opts
)
if
_mx_sulong
:
# native.recommended runs FastR, it already has a build dependency to the FASTR distribution
# if we are running with sulong we also need the SULONG distribution
rec
=
mx
.
project
(
'
com.oracle.truffle.r.native.recommended
'
)
rec
.
buildDependencies
+=
[
mx
.
distribution
(
'
SULONG
'
)]
mx_unittest
.
add_config_participant
(
_unittest_config_participant
)
mx_unittest
.
add_config_participant
(
_unittest_config_participant
)
...
...
This diff is collapsed.
Click to expand it.
mx.fastr/mx_fastr_dists.py
+
7
−
38
View file @
817cd7f7
...
@@ -188,46 +188,13 @@ R_HOME_DIR="$( dirname "$r_bin" )"
...
@@ -188,46 +188,13 @@ R_HOME_DIR="$( dirname "$r_bin" )"
rscript_launcher
=
join
(
self
.
subject
.
dir
,
'
src
'
,
'
Rscript_launcher
'
)
rscript_launcher
=
join
(
self
.
subject
.
dir
,
'
src
'
,
'
Rscript_launcher
'
)
self
.
_template
(
rscript_launcher
,
join
(
bin_dir
,
'
Rscript
'
),
template_dict
)
self
.
_template
(
rscript_launcher
,
join
(
bin_dir
,
'
Rscript
'
),
template_dict
)
class
FastRNativeRecommendedProject
(
mx
.
NativeProject
):
'''
This finesses an ordering problem on installing the recommended R packages.
These must be installed by FastR using bin/R CMD INSTALL. That will invoke a
nested
'
mx R
'
invocation which requires the FASTR distribution to be available.
However, this dependency cannot be specified in the suite.py file so we achieve
it here by ensuring that it is built prior to the native.recommended project.
'''
def
__init__
(
self
,
suite
,
name
,
deps
,
workingSets
,
theLicense
,
**
args
):
mx
.
NativeProject
.
__init__
(
self
,
suite
,
name
,
None
,
[],
deps
,
workingSets
,
None
,
None
,
join
(
suite
.
dir
,
name
),
theLicense
)
def
getBuildTask
(
self
,
args
):
return
NativeRecommendedBuildTask
(
self
,
args
)
class
NativeRecommendedBuildTask
(
mx
.
NativeBuildTask
):
def
__init__
(
self
,
project
,
args
):
mx
.
NativeBuildTask
.
__init__
(
self
,
args
,
project
)
def
build
(
self
):
# must archive FASTR before build so that nested mx R CMD INSTALL can execute
mx
.
archive
([
'
@FASTR
'
])
mx
.
NativeBuildTask
.
build
(
self
)
class
FastRArchiveParticipant
:
class
FastRArchiveParticipant
:
def
__init__
(
self
,
dist
):
def
__init__
(
self
,
dist
):
self
.
dist
=
dist
self
.
dist
=
dist
def
__opened__
(
self
,
arc
,
srcArc
,
services
):
def
__opened__
(
self
,
arc
,
srcArc
,
services
):
# The release project states dependencies on the java projects in order
pass
# to ensure they are built first. Therefore, the JarDistribution code
# will include all their class files at the top-level of the jar by default.
# Since we have already encapsulated the class files in 'fastr_jars/fastr.jar' we
# suppress their inclusion here by resetting the deps field. A bit of a hack.
if
"
FASTR_RELEASE
"
in
self
.
dist
.
name
:
assert
isinstance
(
self
.
dist
.
deps
[
0
],
FastRReleaseProject
)
self
.
release_project
=
self
.
dist
.
deps
[
0
]
self
.
dist
.
deps
[
0
].
deps
=
[]
if
hasattr
(
self
.
dist
,
'
.archived_deps
'
):
delattr
(
self
.
dist
,
'
.archived_deps
'
)
def
__add__
(
self
,
arcname
,
contents
):
def
__add__
(
self
,
arcname
,
contents
):
return
False
return
False
...
@@ -236,11 +203,13 @@ class FastRArchiveParticipant:
...
@@ -236,11 +203,13 @@ class FastRArchiveParticipant:
return
False
return
False
def
__closing__
(
self
):
def
__closing__
(
self
):
if
"
FASTR_RELEASE
"
in
self
.
dist
.
name
and
os
.
environ
.
has_key
(
'
FASTR_RELEASE
'
):
if
"
FASTR_RELEASE
"
in
self
.
dist
.
name
and
'
FASTR_RELEASE
'
in
os
.
environ
:
# the files copied in can be confused as source files by
assert
isinstance
(
self
.
dist
.
deps
[
0
],
FastRReleaseProject
)
# e.g., mx copyright, so delete them, specifically thne
release_project
=
self
.
dist
.
deps
[
0
]
# the files copied in can be confused as source files by
# e.g., mx copyright, so delete them, specifically the
# include dir
# include dir
include_dir
=
join
(
self
.
release_project
.
dir
,
'
include
'
)
include_dir
=
join
(
release_project
.
dir
,
'
include
'
)
shutil
.
rmtree
(
include_dir
)
shutil
.
rmtree
(
include_dir
)
def
mx_post_parse_cmd_line
(
opts
):
def
mx_post_parse_cmd_line
(
opts
):
...
...
This diff is collapsed.
Click to expand it.
mx.fastr/suite.py
+
3
−
3
View file @
817cd7f7
suite
=
{
suite
=
{
"
mxversion
"
:
"
5.
60.0
"
,
"
mxversion
"
:
"
5.
141.1
"
,
"
name
"
:
"
fastr
"
,
"
name
"
:
"
fastr
"
,
"
versionConflictResolution
"
:
"
latest
"
,
"
versionConflictResolution
"
:
"
latest
"
,
"
imports
"
:
{
"
imports
"
:
{
...
@@ -297,7 +297,7 @@ suite = {
...
@@ -297,7 +297,7 @@ suite = {
"
com.oracle.truffle.r.release
"
:
{
"
com.oracle.truffle.r.release
"
:
{
"
sourceDirs
"
:
[
"
src
"
],
"
sourceDirs
"
:
[
"
src
"
],
"
d
ependencies
"
:
[
"
com.oracle.truffle.r.native.recommended
"
],
"
buildD
ependencies
"
:
[
"
com.oracle.truffle.r.native.recommended
"
],
"
class
"
:
"
FastRReleaseProject
"
,
"
class
"
:
"
FastRReleaseProject
"
,
"
output
"
:
"
com.oracle.truffle.r.release
"
"
output
"
:
"
com.oracle.truffle.r.release
"
},
},
...
@@ -308,9 +308,9 @@ suite = {
...
@@ -308,9 +308,9 @@ suite = {
"
com.oracle.truffle.r.engine
"
,
"
com.oracle.truffle.r.engine
"
,
"
com.oracle.truffle.r.ffi.impl
"
"
com.oracle.truffle.r.ffi.impl
"
],
],
"
class
"
:
"
FastRNativeRecommendedProject
"
,
"
native
"
:
True
,
"
native
"
:
True
,
"
workingSets
"
:
"
FastR
"
,
"
workingSets
"
:
"
FastR
"
,
"
buildDependencies
"
:
[
"
FASTR
"
],
},
},
"
com.oracle.truffle.r.test.tck
"
:
{
"
com.oracle.truffle.r.test.tck
"
:
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment