-
Notifications
You must be signed in to change notification settings - Fork 161
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 Julia setup in buildsys, and test Julia GC integration on Travis #2905
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fingolfin
added
topic: tests
issues or PRs related to tests
do not merge
PRs which are not yet ready to be merged (e.g. submitted for discussion, or test results)
labels
Oct 8, 2018
fingolfin
force-pushed
the
mh/julia-travis
branch
from
October 8, 2018 13:08
ff1408a
to
49240e6
Compare
Codecov Report
@@ Coverage Diff @@
## master #2905 +/- ##
==========================================
+ Coverage 83.74% 83.75% +<.01%
==========================================
Files 680 681 +1
Lines 346265 346552 +287
==========================================
+ Hits 289971 290244 +273
- Misses 56294 56308 +14
|
fingolfin
force-pushed
the
mh/julia-travis
branch
4 times, most recently
from
October 8, 2018 22:40
bfc22ee
to
93d371d
Compare
fingolfin
changed the title
Test Julia GC integration on Travis (WIP, DO NOT MERGE)
Update Julia setup in buildsys, and test Julia GC integration on Travis
Oct 8, 2018
fingolfin
added
topic: build system
backport-to-4.9
and removed
do not merge
PRs which are not yet ready to be merged (e.g. submitted for discussion, or test results)
backport-to-4.9
labels
Oct 8, 2018
sebasguts
approved these changes
Oct 9, 2018
Now configure only checks for a julia binary; then we use julia-config.jl to determine all relevant paths, and do it all from inside Makefile.rules. The downside of this is that if we find a broken Julia, this won't work, but configure won't tell us. The upside is that we get all the correct compiler and linker flags. In particular, we don't have to hardcode `#define JULIA_ENABLE_THREADING` anymore.
fingolfin
force-pushed
the
mh/julia-travis
branch
from
October 9, 2018 07:41
93d371d
to
e3954d7
Compare
fingolfin
force-pushed
the
mh/julia-travis
branch
from
October 9, 2018 07:42
e3954d7
to
269d490
Compare
fingolfin
added
the
release notes: not needed
PRs introducing changes that are wholly irrelevant to the release notes
label
Oct 18, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
backport-to-4.10-DONE
release notes: not needed
PRs introducing changes that are wholly irrelevant to the release notes
topic: build system
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The Julia GC extension code has now been merged into Julia master, meaning that it is available in Julia nightly builds (and also should be in Julia 1.1, once that gets released).
This now makes it possible to add a Travis job which tests the Julia GC integration in GAP.
Moreover, the Julia integration int the build system was rewritten to make use of
julia-config.jl
to obtain the correct compiler & linker flags.