Skip to content

Commit

Permalink
bin\
Browse files Browse the repository at this point in the history
  • Loading branch information
inikep committed Sep 6, 2016
1 parent 908554b commit 1e30bfe
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ build_script:
make %MAKE_PARAMS%
)
- if [%COMPILER%]==[gcc] if [%PLATFORM%]==[mingw64] (
COPY programs\zstd.exe zstd.exe &&
appveyor PushArtifact zstd.exe
COPY programs\zstd.exe bin\zstd.exe &&
appveyor PushArtifact bin\zstd.exe
)
- if [%COMPILER%]==[gcc] if [%PLATFORM%]==[mingw32] (
COPY programs\zstd.exe zstd32.exe &&
appveyor PushArtifact zstd32.exe
COPY programs\zstd.exe bin\zstd32.exe &&
appveyor PushArtifact bin\zstd32.exe
)
- if [%COMPILER%]==[gcc] make clean
- if [%COMPILER%]==[visual] (
Expand Down Expand Up @@ -111,14 +111,14 @@ test_script:
)

artifacts:
- path: zstd.exe
- path: zstd32.exe
- path: bin\zstd.exe
- path: bin\zstd32.exe

deploy:
- provider: GitHub
auth_token:
secure: LgJo8emYc3sFnlNWkGl4/VYK3nk/8+RagcsqDlAi3xeqNGNutnKjcftjg84uJoT4
artifact: zstd.exe
artifact: bin\zstd.exe
force_update: true
on:
COMPILER: gcc
Expand All @@ -127,7 +127,7 @@ deploy:
- provider: GitHub
auth_token:
secure: LgJo8emYc3sFnlNWkGl4/VYK3nk/8+RagcsqDlAi3xeqNGNutnKjcftjg84uJoT4
artifact: zstd32.exe
artifact: bin\zstd32.exe
force_update: true
on:
COMPILER: gcc
Expand Down

0 comments on commit 1e30bfe

Please sign in to comment.