Skip to content

Commit 090adf3

Browse files
committed
appveyor: Use gist to post disassembly
1 parent 0e17c8c commit 090adf3

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

appveyor.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ install:
77
- ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-nightly-${env:TARGET}.exe"
88
- rust-nightly-%TARGET%.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
99
- SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
10+
- gem install gist
1011
- rustc -Vv
1112
- cargo -V
1213

@@ -17,8 +18,12 @@ test_script:
1718
- cargo build --release
1819
- cargo test
1920
- cargo test --release
20-
- CALL "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat"
21-
- dumpbin /disasm target/release/librustc_builtins.rlib || exit 0
21+
22+
on_success:
23+
- cmd: |
24+
CALL "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat"
25+
dumpbin /disasm target/release/librustc_builtins.rlib |
26+
gist -d "'%TARGET%/rustc-builtins.rlib' from commit '%APPVEYOR_REPO_COMMIT%' on branch '%APPVEYOR_REPO_branch%'"
2227
2328
branches:
2429
only:

0 commit comments

Comments
 (0)