Skip to content

Commit f7f85cd

Browse files
bors[bot]lnicola
andauthored
Merge #7011
7011: Don't release uncompressed binaries under the new naming scheme r=lnicola a=lnicola bors r+ Co-authored-by: Laurențiu Nicola <[email protected]>
2 parents 493e29d + 25a9877 commit f7f85cd

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282

8383
- name: Nightly analysis-stats check
8484
if: github.ref != 'refs/heads/release'
85-
run: ./dist/rust-analyzer-x86_64-unknown-linux-gnu analysis-stats .
85+
run: target/x86_64-unknown-linux-gnu/release/rust-analyzer analysis-stats .
8686

8787
- name: Upload artifacts
8888
uses: actions/upload-artifact@v1

xtask/src/dist.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ fn dist_server() -> Result<()> {
7070
let src =
7171
Path::new("target").join(&target).join("release").join(format!("rust-analyzer{}", suffix));
7272
let dst = Path::new("dist").join(format!("rust-analyzer-{}{}", target, suffix));
73-
cp(&src, &dst)?;
7473
gzip(&src, &dst.with_extension("gz"))?;
7574

7675
// FIXME: the old names are temporarily kept for client compatibility, but they should be removed

0 commit comments

Comments
 (0)