Skip to content

Commit 2008b4a

Browse files
committedJul 3, 2019
Merge remote-tracking branch 'rust-lang/master' into minix
2 parents 45c65b9 + 5bbba03 commit 2008b4a

File tree

195 files changed

+20746
-9622
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

195 files changed

+20746
-9622
lines changed
 

‎.cirrus.yml

+20-7
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,27 @@
1-
freebsd_instance:
2-
image: freebsd-11-1-release-amd64
3-
41
task:
5-
# This name gets reported as a build status in GitHub
6-
name: stable x86_64-unknown-freebsd
2+
name: stable x86_64-unknown-freebsd-11
3+
freebsd_instance:
4+
image: freebsd-11-2-release-amd64
75
setup_script:
86
- pkg install -y curl
97
- curl https://sh.rustup.rs -sSf --output rustup.sh
108
- sh rustup.sh -y
9+
- . $HOME/.cargo/env
10+
- rustup default stable
11+
test_script:
12+
- . $HOME/.cargo/env
13+
- sh ci/run.sh x86_64-unknown-freebsd
14+
15+
task:
16+
name: nightly x86_64-unknown-freebsd-12
17+
freebsd_instance:
18+
image: freebsd-12-0-release-amd64
19+
setup_script:
20+
- pkg install -y curl
21+
- curl https://sh.rustup.rs -sSf --output rustup.sh
22+
- sh rustup.sh --default-toolchain nightly -y
23+
- . $HOME/.cargo/env
24+
- rustup default nightly
1125
test_script:
1226
- . $HOME/.cargo/env
13-
- cd libc-test
14-
- cargo test
27+
- sh ci/run.sh x86_64-unknown-freebsd

‎.github/issue_template.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<!--
2+
**Help us help you.**
3+
4+
If you are reporting a bug, include:
5+
6+
* a Minimum Working Example without any dependencies (except libc) that shows
7+
the issue and ideally reproduces in the Rust playground
8+
* the target triple - libc supports many targets and many APIs
9+
* instructions to reproduce, logs (e.g. build logs, links to Travis-CI logs,
10+
uploads to github gists, etc.).
11+
12+
If you are requesting a new API, include:
13+
14+
* the target triple
15+
* link to the documentation of the API showing the type signatures, how to use
16+
it, etc.
17+
18+
In general, just please consider that the people who can help you are all very
19+
busy, they will be helping you in their free time, there are a lot of people in
20+
need of help so they need to prioritize to which issues they devote their free
21+
time, etc. So try to give most of the information upfront, be concise, show
22+
small self-contained examples (nobody has time to create a new cargo project,
23+
set up dependencies,...), etc. Help us help you.
24+
-->

0 commit comments

Comments
 (0)
Please sign in to comment.