From e08a85637d85ac11a5040a811c9d504f3a8a713e Mon Sep 17 00:00:00 2001 From: Zeex Date: Sat, 29 Sep 2018 23:27:00 +0600 Subject: [PATCH 1/2] Fix release deployment --- .travis.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5851319..b372bea 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,9 +15,9 @@ addons: before_script: - mkdir build && cd build - - cmake ../source/compiler - -DCMAKE_BUILD_TYPE=RelWithDebInfo - -DCMAKE_C_FLAGS="-m32 -Werror -Wno-address-of-packed-member" + - cmake ../source/compiler \ + -DCMAKE_BUILD_TYPE=RelWithDebInfo \ + -DCMAKE_C_FLAGS="-m32 -Werror -Wno-address-of-packed-member" \ -DCPACK_GENERATOR="TGZ;ZIP" script: @@ -34,8 +34,8 @@ deploy: secure: gDAuRNlF2uVhVHyZtJrX6MwNxnkfkQzohrC/6UcKAgqt+NKs4vZyq5FzTUceiDAkB0se70ZVx08e9ibAiXP/b7D1MPkAEiRxt9J6Vu3x6Bi1kPPuK5RfjFeT3gc1SbrULAP8Nz0NdU0chUhei6/V5NGhTegwp925DJOISq7+Ibw= file_glob: true file: - - 'build/pawnc-*-linux.tar.gz' - - 'build/pawnc-*-macos.zip' + - 'pawnc-*-linux.tar.gz' + - 'pawnc-*-macos.zip' draft: true skip_cleanup: true on: From f227c797b8c0804dc84fcebfd2614fa92f6f4d97 Mon Sep 17 00:00:00 2001 From: Zeex Date: Tue, 2 Oct 2018 10:27:52 +0600 Subject: [PATCH 2/2] Fix .travis.yml again It's funny... their "Trigger build" feature requires the use of backslashes here but in regular builds their system can't deal with them --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index b372bea..f700f55 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,9 +15,9 @@ addons: before_script: - mkdir build && cd build - - cmake ../source/compiler \ - -DCMAKE_BUILD_TYPE=RelWithDebInfo \ - -DCMAKE_C_FLAGS="-m32 -Werror -Wno-address-of-packed-member" \ + - cmake ../source/compiler + -DCMAKE_BUILD_TYPE=RelWithDebInfo + -DCMAKE_C_FLAGS="-m32 -Werror -Wno-address-of-packed-member" -DCPACK_GENERATOR="TGZ;ZIP" script: