blog(aoc-2022): don't forget ‹sccache›

Signed-off-by: Matej Focko <mfocko@redhat.com>
This commit is contained in:
Matej Focko 2022-12-15 01:11:57 +01:00
parent d49ed51087
commit cd134b5888
Signed by: mfocko
GPG key ID: 7C47D46246790496

View file

@ -79,6 +79,10 @@ mod tests {
And later on I have noticed, it's hard to tell the difference between the days, And later on I have noticed, it's hard to tell the difference between the days,
so I further renamed to `mod` to reflect the days. so I further renamed to `mod` to reflect the days.
Also first thing I've done after finishing the first day puzzle, I have installed
an [`sccache`] to cache the builds, so that the build time is lower, cause it was
kinda unbearable.
### Solution ### Solution
Well, it's a pretty simple problem. You just take the input, sum the calories and Well, it's a pretty simple problem. You just take the input, sum the calories and
@ -461,6 +465,7 @@ the filesystem.
[_Advent of Code_]: https://adventofcode.com [_Advent of Code_]: https://adventofcode.com
[GitLab]: https://gitlab.com/mfocko/advent-of-code-2022 [GitLab]: https://gitlab.com/mfocko/advent-of-code-2022
[`/src/bin/`]: https://gitlab.com/mfocko/advent-of-code-2022/-/tree/main/src/bin [`/src/bin/`]: https://gitlab.com/mfocko/advent-of-code-2022/-/tree/main/src/bin
[`sccache`]: https://github.com/mozilla/sccache
[`RangeInclusive`]: https://doc.rust-lang.org/std/ops/struct.RangeInclusive.html [`RangeInclusive`]: https://doc.rust-lang.org/std/ops/struct.RangeInclusive.html
[`split_off`]: https://doc.rust-lang.org/std/vec/struct.Vec.html#method.split_off [`split_off`]: https://doc.rust-lang.org/std/vec/struct.Vec.html#method.split_off
[`du`]: https://www.man7.org/linux/man-pages/man1/du.1.html [`du`]: https://www.man7.org/linux/man-pages/man1/du.1.html