Symmetry Investments and the D Language Foundation are Hiring
drug
drug2004 at bk.ru
Wed Jan 13 12:24:58 UTC 2021
On 9/5/20 3:55 PM, Andrej Mitrovic wrote:
> On Sunday, 30 August 2020 at 14:13:36 UTC, Mike Parker wrote:
>> Looking for a full-time or part-time gig? Not only is Symmetry
>> Investments hiring D programmers, they are also generously funding two
>> positions for ecosystem work under the D Language Foundation. And
>> they've put up a bounty for a new DUB feature. Read all about it here:
>>
>> https://dlang.org/blog/2020/08/30/symmetry-investments-and-the-d-language-foundation-are-hiring/
>>
>
> One other thing that hashing enables is caching builds. So if you build,
> then change a file, then build again, and then revert the file again it
> would be great if the next build just restored the cached build from the
> very first build.
>
> The less time spent waiting on builds, the better.
Could you test this feature https://github.com/dlang/dub/pull/2077?
The simple way to do it would be adding this file to the project root
directory:
```json
{
"buildCachePolicy" : "sha1"
}
```
This enables hash dependent build based on sha1. Get ready to spent more
storage space for your builds, of course.
More information about the Digitalmars-d-announce
mailing list