File tree 8 files changed +89
-0
lines changed
8 files changed +89
-0
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
+
3
+ # Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
4
+ # file at the top-level directory of this distribution and at
5
+ # http://rust-lang.org/COPYRIGHT.
6
+ #
7
+ # Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
8
+ # http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
9
+ # <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
10
+ # option. This file may not be copied, modified, or distributed
11
+ # except according to those terms.
12
+
13
+
2
14
# Automatically deploy on gh-pages
3
15
4
16
set -ex
Original file line number Diff line number Diff line change
1
+ # Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
2
+ # file at the top-level directory of this distribution and at
3
+ # http://rust-lang.org/COPYRIGHT.
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6
+ # http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7
+ # <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8
+ # option. This file may not be copied, modified, or distributed
9
+ # except according to those terms.
10
+
11
+
1
12
set -ex
2
13
3
14
echo " Running clippy base tests"
Original file line number Diff line number Diff line change
1
+ # Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
2
+ # file at the top-level directory of this distribution and at
3
+ # http://rust-lang.org/COPYRIGHT.
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6
+ # http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7
+ # <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8
+ # option. This file may not be copied, modified, or distributed
9
+ # except according to those terms.
10
+
1
11
set -x
2
12
rm ~ /.cargo/bin/cargo-clippy
3
13
cargo install --force --path .
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
+ # Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
4
+ # file at the top-level directory of this distribution and at
5
+ # http://rust-lang.org/COPYRIGHT.
6
+ #
7
+ # Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
8
+ # http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
9
+ # <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
10
+ # option. This file may not be copied, modified, or distributed
11
+ # except according to those terms.
12
+
13
+
3
14
set -e
4
15
5
16
./util/update_lints.py
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/bash
2
2
3
+ # Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
4
+ # file at the top-level directory of this distribution and at
5
+ # http://rust-lang.org/COPYRIGHT.
6
+ #
7
+ # Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
8
+ # http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
9
+ # <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
10
+ # option. This file may not be copied, modified, or distributed
11
+ # except according to those terms.
12
+
13
+
3
14
# This run `kcov` on Clippy. The coverage report will be at
4
15
# `./target/cov/index.html`.
5
16
# `compile-test` is special. `kcov` does not work directly on it so these files
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
+
3
+ # Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
4
+ # file at the top-level directory of this distribution and at
5
+ # http://rust-lang.org/COPYRIGHT.
6
+ #
7
+ # Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
8
+ # http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
9
+ # <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
10
+ # option. This file may not be copied, modified, or distributed
11
+ # except according to those terms.
12
+
13
+
2
14
# Build the gh-pages
3
15
4
16
import re
Original file line number Diff line number Diff line change
1
+ # Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
2
+ # file at the top-level directory of this distribution and at
3
+ # http://rust-lang.org/COPYRIGHT.
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6
+ # http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7
+ # <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8
+ # option. This file may not be copied, modified, or distributed
9
+ # except according to those terms.
10
+
1
11
# Common utils for the several housekeeping scripts.
2
12
3
13
import os
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
+
3
+ # Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
4
+ # file at the top-level directory of this distribution and at
5
+ # http://rust-lang.org/COPYRIGHT.
6
+ #
7
+ # Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
8
+ # http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
9
+ # <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
10
+ # option. This file may not be copied, modified, or distributed
11
+ # except according to those terms.
12
+
13
+
2
14
# Generate a Markdown table of all lints, and put it in README.md.
3
15
# With -n option, only print the new table to stdout.
4
16
# With -c option, print a warning and set exit status to 1 if a file would be
You can’t perform that action at this time.
0 commit comments