* Add experimental concurrent cache support * prepare release 0.9.0 (#2293) * build(deps): bump codecov/codecov-action from 4 to 5 (#2289) * feat: set user agent in webdav requests (#2284) * test CTK 11.1 in CI * add test to ensure -v|--verbose are never dist-compiled * don't generate a dist-compile command for clang-cuda * don't use leading digit in renamed file names * include the output file name in nvcc trace logs * revert adding --gen_module_id_file when --module_id_file_name is present * read NVCC_{PREPEND,APPEND}_FLAGS from the compile environment, not the server environment * add --default-stream arg, fix parsing concatenated form of nvcc -t1 * always add --gen_module_id_file if --module_id_file_name is specified * Normalize nvcc subcommand order for CTK <12.0, ensuring the DAG is parsed by inputs/outputs even if the preprocessor, cicc, and ptxas commands are out of order. * hash --gen_module_id_file and --module_id_file_name arguments * add more clang flags * compiler invocations with -v or --verbose must not be dist-compiled, since tools like CMake parse the output and expect to see client paths not dist-server paths * report total compilation count and compile times for uncached and failed compilations * ensure dist_type is reported for failed and uncached compilations * check for more host-compiler nvcc defines to accommodate older nvcc versions * Pass correct argument to rustc -Z ls * Make start_compile_task spawn a tokio task again * ensure SCCACHE_NO_CACHE calls aren't tracked as an uncacheable compilations in the stats * Attempt to fix intermittent config_from_env() test failures by ensuring envvars are reset before unwrapping/asserting * Test nvcc and clang-cuda in workflows/ci.yml * Ensure compatibility with MSVC compatibility on Windows * fix exit_status propagation, handle long nvcc language option (--x) * Detect both nvcc and host compiler version so we can safely revert to caching outer nvcc invocations * Update `Nvcc` compiler to support distributed compilation OBS-URL: https://build.opensuse.org/package/show/devel:languages:rust/sccache?expand=0&rev=70
33 lines
1.4 KiB
Plaintext
33 lines
1.4 KiB
Plaintext
<services>
|
|
<service mode="disabled" name="obs_scm">
|
|
<!-- <param name="url">https://github.com/mozilla/sccache.git</param> -->
|
|
<param name="url">https://github.com/Firstyear/sccache.git</param>
|
|
<param name="versionformat">@PARENT_TAG@~@TAG_OFFSET@</param>
|
|
<param name="scm">git</param>
|
|
<!-- <param name="revision">v0.3.0</param> -->
|
|
<param name="revision">20241210-suse-maint-v0.9.0</param>
|
|
<param name="match-tag">*</param>
|
|
<param name="versionrewrite-pattern">v(\d+\.\d+\.\d+)</param>
|
|
<param name="versionrewrite-replacement">\1</param>
|
|
<param name="changesgenerate">enable</param>
|
|
<param name="changesauthor">william.brown@suse.com</param>
|
|
</service>
|
|
<service mode="disabled" name="set_version"/>
|
|
<service mode="disabled" name="tar" />
|
|
<service mode="disabled" name="recompress">
|
|
<param name="file">*.tar</param>
|
|
<param name="compression">zst</param>
|
|
</service>
|
|
<service name="cargo_vendor" mode="disabled">
|
|
<param name="srcdir">sccache</param>
|
|
<param name="compression">zst</param>
|
|
<param name="update">true</param>
|
|
<!-- difficult to exploit side channel, no mitigations available yet -->
|
|
<!-- https://rustsec.org/advisories/RUSTSEC-2023-0071.html -->
|
|
<param name="i-accept-the-risk">RUSTSEC-2023-0071</param>
|
|
</service>
|
|
<service name="cargo_audit" mode="disabled">
|
|
<param name="srcdir">sccache</param>
|
|
</service>
|
|
</services>
|