Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Don't store generated docs in the repo | Aleksey Kladov | 2020-06-03 | 1 | -0/+2 |
| | |||||
* | Move assists documentation into the manual | Aleksey Kladov | 2020-05-31 | 1 | -1/+1 |
| | |||||
* | Rename user/readme.adoc -> user/manual.adoc | Aleksey Kladov | 2020-05-31 | 1 | -1/+5 |
| | |||||
* | Allow to set env vars and pipe stdin via not_bash | Aleksey Kladov | 2020-04-30 | 1 | -81/+30 |
| | |||||
* | Avoid `rustup` invocation for non-rustup rust installation | oxalica | 2020-04-30 | 1 | -33/+67 |
| | |||||
* | More compact generated code | Aleksey Kladov | 2020-04-09 | 1 | -0/+1 |
| | |||||
* | Don't strip nightly releases | Aleksey Kladov | 2020-04-08 | 1 | -2/+2 |
| | |||||
* | When making a release, just promote the latest nightly | Aleksey Kladov | 2020-04-07 | 1 | -2/+2 |
| | |||||
* | gen_assists_docs skip hidden files | Josh Mcguigan | 2020-03-21 | 1 | -0/+16 |
| | |||||
* | Restore cargo-fmt gating | Aleksey Kladov | 2020-03-13 | 1 | -5/+3 |
| | |||||
* | Build server via dist as well | Aleksey Kladov | 2020-03-04 | 1 | -40/+2 |
| | |||||
* | Hopefully fix YAML syntax | Aleksey Kladov | 2020-03-04 | 1 | -1/+0 |
| | |||||
* | cargo xtask dist | Aleksey Kladov | 2020-03-04 | 1 | -1/+40 |
| | | | | This builds the typescript extension | ||||
* | Clean xtask partial artifacts in `xtask pre-cache` | Christopher Durham | 2020-03-03 | 1 | -2/+5 |
| | |||||
* | Print log on release | Aleksey Kladov | 2020-03-02 | 1 | -0/+9 |
| | |||||
* | Some docs | Aleksey Kladov | 2020-02-27 | 1 | -1/+3 |
| | |||||
* | Simplify | Aleksey Kladov | 2020-02-14 | 1 | -5/+2 |
| | |||||
* | Move rm_rf to not-bash | Aleksey Kladov | 2020-02-14 | 1 | -8/+3 |
| | |||||
* | Add fs2 module for better error messages | Aleksey Kladov | 2020-02-14 | 1 | -5/+5 |
| | |||||
* | Update the manual on release | Aleksey Kladov | 2020-02-14 | 1 | -1/+4 |
| | |||||
* | Add dry run mode to xtask release | Aleksey Kladov | 2020-02-14 | 1 | -5/+7 |
| | |||||
* | Replace Cmd with not-bash | Aleksey Kladov | 2020-02-14 | 1 | -30/+28 |
| | |||||
* | xtask release | Aleksey Kladov | 2020-02-10 | 1 | -1/+42 |
| | |||||
* | Rename add import assist | Kirill Bulatov | 2020-02-07 | 1 | -2/+1 |
| | |||||
* | todo(codegen): added todo to change the reference to removed ra_tools crate | Veetaha | 2020-01-16 | 1 | -0/+1 |
| | |||||
* | Use correct rustfmt for codegen | Aleksey Kladov | 2020-01-10 | 1 | -10/+27 |
| | | | | closes #1569 | ||||
* | Share cache cleaning logic between OSes | Aleksey Kladov | 2020-01-07 | 1 | -1/+39 |
| | |||||
* | Cleanup | Aleksey Kladov | 2020-01-07 | 1 | -4/+4 |
| | |||||
* | Move cmd to a separate dir | Aleksey Kladov | 2020-01-07 | 1 | -53/+5 |
| | |||||
* | Refactor xtasks | Aleksey Kladov | 2020-01-07 | 1 | -37/+4 |
| | |||||
* | Switch ast declaration from ron to a macro | Aleksey Kladov | 2020-01-03 | 1 | -0/+1 |
| | |||||
* | Make reformat hook actually reformat files | Aleksey Kladov | 2019-12-18 | 1 | -0/+1 |
| | |||||
* | Use rustup toolchain instead of rustup install | Edwin Cheng | 2019-12-08 | 1 | -2/+2 |
| | |||||
* | Don't create a separate bin for format hook | Aleksey Kladov | 2019-11-18 | 1 | -12/+26 |
| | |||||
* | Use anyhow::Result in xtask, add contexts | Pascal Hertleif | 2019-11-13 | 1 | -9/+7 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This builds on #2231 but was actually done before that. You see, the cause for #2231 was that I got this error message: Error: Error { kind: Io(Os { code: 2, kind: NotFound, message: "No such file or directory" }) } Just switching to `anyhow::Result` got me stack traces (when setting `RUST_LIB_BACKTRACE=1`) that at least showed stack backtrace: 0: std::backtrace::Backtrace::create 1: std::backtrace::Backtrace::capture 2: anyhow::error::<impl core::convert::From<E> for anyhow::Error>::from 3: xtask::install_server 4: xtask::install 5: xtask::main 6: std::rt::lang_start::{{closure}} 7: std::panicking::try::do_call 8: __rust_maybe_catch_panic 9: std::rt::lang_start_internal 10: std::rt::lang_start 11: main With the added contexts (not at all exhaustive), the error became Error: install server Caused by: 0: build AutoCfg with target directory 1: No such file or directory (os error 2) Since anyhow is such a small thing (no new transitive dependencies!), and in general gives you `Result<T, Box<dyn Error>>` on steroids, I think this a nice small change. The only slightly annoying thing was to replace all the `Err(format!(…))?` calls (haven't even looked at whether we can make it support wrapping strings though), but the `bail!` macro is shorter anyway :) | ||||
* | Use run-time project path in xtask | Laurențiu Nicola | 2019-11-01 | 1 | -1/+8 |
| | |||||
* | xtask: move codegen to a module | Aleksey Kladov | 2019-10-23 | 1 | -172/+3 |
| | |||||
* | rename tools -> xtask | Aleksey Kladov | 2019-10-17 | 1 | -1/+1 |
| | |||||
* | WIP: move to xtasks | Aleksey Kladov | 2019-10-17 | 1 | -0/+332 |