summaryrefslogtreecommitdiff
path: root/maint/with_coverage
Commit message (Collapse)AuthorAgeFilesLines
* maint: replace llvm-tools-preview with llvm-toolsEmil Engler2023-01-271-4/+4
| | | | | | | | | | | | This commit replaces all occurrences of `llvm-tools-preview` with `llvm-tools`, because it became a stable feature with Rust 1.60, thereby making the `-preview` prefix obsolete. Beside this, `llvm-tools-preview` is a redirection to the latter one anyway. However, it does not work the other way around. At the moment, it is not possible to execute the `maint/coverage` script on a NixOS system, because the rustup component list only includes `llvm-tools`, but not `llvm-tools-preview`, thereby making this change necessary.
* shell: use /usr/bin/env instead of absolute pathsEmil Engler2023-01-251-1/+1
| | | | | | | | | | This commit changes the shebang in all shell scripts from absolute paths (such as `/bin/bash` or `/usr/bin/python3`) to the `/usr/bin/env` binary with the accompanying interpreter as it's argument. The reason for this are as follows: - NixOS cannot work with absolute paths - BSD systems install their packages in /usr/local/bin
* Check more targetstrinity-1686a2022-11-101-1/+1
|
* make almost all scripts use bash and set euo pipefailtrinity-1686a2022-05-251-1/+1
|
* use default toolchain from rustup instead of stable for coveragetrinity-1686a2022-04-081-1/+2
| | | | using stable doesn't work for CI because a specific version like 1.60 is installed
* bring back RUST_COVERAGE_TOOLCHAINtrinity-1686a2022-04-081-2/+8
|
* use rustc 1.60 (stable) for coveragetrinity-1686a2022-04-071-11/+4
|
* fix with_coverage script to exclude pub(crate) mod test from resultstrinity-1686a2022-03-241-1/+1
|
* Omit arti-testing from coverage.Nick Mathewson2022-03-041-0/+1
|
* add script for coverage on fuzzingtrinity-1686a2022-02-221-0/+1
|
* rename *.py scripts to bare nameIan Jackson2022-02-181-2/+2
| | | | | | Update all references. There are three remaining hits for git-grep '\.py\b' all of which are scripts in "little-t-tor", not here in arti.
* rename *.sh scripts to bare nameIan Jackson2022-02-181-0/+159
As per #309 Update all references. There is one remaining hit for git-grep '\.sh\b' namely "build.sh" in maint/reproducible_build, which I think is the build script for osxcross - ie, an external project.