-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into mh/fix_25430
- Loading branch information
Showing
960 changed files
with
90,809 additions
and
63,709 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
#!/bin/sh | ||
# FreeBSD CI Build Scripts | ||
# The flow of a FreeBSD CI (https://freebsdci.julialang.org) build: | ||
# | ||
# 1. `compile` | ||
# 2. `build-state` | ||
# 3. `runtests` | ||
# 4. `test-embedding` | ||
# | ||
# Detail of flow is controlled by the variable `factory` | ||
# here. | ||
# https://github.com/iblis17/julia-fbsd-buildbot/blob/master/master/master.cfg | ||
# | ||
# Usage: .freebsdci.sh <stage> | ||
|
||
set -xe | ||
|
||
build-state(){ | ||
gmake build-stats | ||
} | ||
|
||
compile(){ | ||
export MALLOC_CONF='junk:false' | ||
export VERBOSE=1 | ||
export FORCE_ASSERTIONS=1 | ||
export LLVM_ASSERTIONS=1 | ||
|
||
gmake all -j $MAKE_JOBS_NUMBER | ||
} | ||
|
||
runtests(){ | ||
export MALLOC_CONF='junk:false' | ||
export VERBOSE=1 | ||
export FORCE_ASSERTIONS=1 | ||
export LLVM_ASSERTIONS=1 | ||
export JULIA_TEST_MAXRSS_MB=600 | ||
export JULIA_CPU_CORES=$MAKE_JOBS_NUMBER | ||
|
||
./usr/bin/julia test/runtests.jl all | ||
./usr/bin/julia test/runtests.jl LibGit2/online Pkg/pkg Pkg3/pkg download | ||
} | ||
|
||
test-embedding(){ | ||
export JULIA='../../julia' | ||
export BIN='../../tmp' | ||
|
||
mkdir -vp tmp | ||
gmake -C test embedding | ||
} | ||
|
||
|
||
if [ -z $1 ] | ||
then | ||
exit 1 | ||
fi | ||
|
||
$1 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
Julia Community Standards | ||
========================= | ||
|
||
The Julia community is committed to maintaining a welcoming, civil and constructive environment. We expect the following standards to be observed and upheld by all participants in any community forum (mailing lists, GitHub, IRC, etc.). | ||
|
||
**Be respectful and inclusive.** | ||
Please do not use overtly sexual language or imagery, and do not attack anyone based on any aspect of personal identity, including gender, sexuality, religion, ethnicity, race, age or ability. Keep in mind that what you write in public forums is read by many people who don't know you personally, so please refrain from making prejudiced or sexual jokes and comments – even ones that you might consider acceptable in private. Ask yourself if a comment or statement might make someone feel unwelcomed or like an outsider. | ||
|
||
In particular, do not sexualize the term "Julia" or any other aspects of the project. While "Julia" is a female name in many parts of the world, the programming language is not a person and does not have a gender. | ||
|
||
**Give credit.** | ||
All participants in the Julia community are expected to respect copyright laws and ethical attribution standards. This applies to both code and written materials, such as documentation or blog posts. Materials that violate the law, are plagiaristic, or ethically dubious in some way will be removed from officially-maintained lists of resources. | ||
|
||
If you believe one of these standards has been violated, you can either file an issue on an appropriate repository or confidentially contact the [Julia Stewards](https://julialang.org/community/stewards/) at [stewards@julialang.org](mailto:stewards@julialang.org). Keep in mind that most mistakes are due to ignorance rather than malice. | ||
|
||
**Be concise.** | ||
Constructive criticism and suggestions are welcome, but high-traffic forums do not generally have the bandwidth for extensive discourse. Consider writing a blog post if you feel that you have enough to say on a particular subject. | ||
|
||
**Get involved.** | ||
The Julia community is built on a foundation of reciprocity and collaboration. Be aware that most community members contribute on a voluntary basis, so ideas and bug reports are ok, but demands are not. Pull requests are always welcomed – see the [guidelines for contributing](https://github.com/JuliaLang/julia/blob/master/CONTRIBUTING.md) to read about how to get started. | ||
|
||
**Any concerns?** | ||
If you have a conflict or concern that requires resolution, please contact the [Julia Community Stewards](https://julialang.org/community/stewards/). |
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
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
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
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
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
Oops, something went wrong.