Browse Source

CI: Only post Appveyor IRC notifications when the build fails

Implements 27275.
teor 5 years ago
parent
commit
08ad1f1e46
2 changed files with 3 additions and 3 deletions
  1. 0 3
      .appveyor.yml
  2. 3 0
      changes/ticket27275

+ 0 - 3
.appveyor.yml

@@ -54,9 +54,6 @@ test_script:
             Execute-Bash "VERBOSE=1 make -j2 check"
     }
 
-on_success:
-- cmd: C:\Python27\python.exe %APPVEYOR_BUILD_FOLDER%\scripts\test\appveyor-irc-notify.py irc.oftc.net:6697 tor-ci success
-
 on_failure:
 - cmd: C:\Python27\python.exe %APPVEYOR_BUILD_FOLDER%\scripts\test\appveyor-irc-notify.py irc.oftc.net:6697 tor-ci failure
 

+ 3 - 0
changes/ticket27275

@@ -0,0 +1,3 @@
+  o Minor features (continuous integration):
+    - Only post Appveyor IRC notifications when the build fails.
+      Implements ticket 27275.