Skip to content

Commit

Permalink
Update .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
FabianTerhorst authored Jun 27, 2019
1 parent 13683ea commit f67f15c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ deploy:
file: libcsharp-module.so
on:
repo: FabianTerhorst/coreclr-module
condition: "$LINUX_STABLE" = true
condition: "$LINUX_STABLE = true"
tags: true
- provider: releases
skip_cleanup: true
Expand All @@ -56,7 +56,7 @@ deploy:
file: csharp-module.dll
on:
repo: FabianTerhorst/coreclr-module
condition: "$WINDOWS_STABLE" = true
condition: "$WINDOWS_STABLE = true"
tags: true
- provider: releases
skip_cleanup: true
Expand All @@ -66,7 +66,7 @@ deploy:
file: libcsharp-module.so
on:
repo: FabianTerhorst/coreclr-module
condition: "$LINUX_BETA" = true
condition: "$LINUX_BETA = true"
tags: true
- provider: releases
skip_cleanup: true
Expand All @@ -76,35 +76,35 @@ deploy:
file: csharp-module.dll
on:
repo: FabianTerhorst/coreclr-module
condition: "$WINDOWS_BETA" = true
condition: "$WINDOWS_BETA = true"
tags: true
- provider: script
skip_cleanup: true
script: cd .. && cd .. && cd .. && cd .. && scs3-win.exe upload .\runtime\build\src\Release\csharp-module.dll coreclr-module/stable/x64_win32/csharp-module.dll
on:
repo: FabianTerhorst/coreclr-module
condition: "$WINDOWS_STABLE" = true
condition: "$WINDOWS_STABLE = true"
tags: true
- provider: script
skip_cleanup: true
script: cd .. && cd .. && cd .. && chmod +x ./scs3-linux && ./scs3-linux upload ./runtime/build/src/libcsharp-module.so coreclr-module/stable/x64_linux/libcsharp-module.so
on:
repo: FabianTerhorst/coreclr-module
condition: "$LINUX_STABLE" = true
condition: "$LINUX_STABLE = true"
tags: true
- provider: script
skip_cleanup: true
prerelease: true
script: cd .. && cd .. && cd .. && cd .. && scs3-win.exe upload .\runtime\build\src\Release\csharp-module.dll coreclr-module/beta/x64_win32/csharp-module.dll
on:
repo: FabianTerhorst/coreclr-module
condition: "$WINDOWS_BETA" = true
condition: "$WINDOWS_BETA = true"
tags: true
- provider: script
skip_cleanup: true
prerelease: true
script: cd .. && cd .. && cd .. && chmod +x ./scs3-linux && ./scs3-linux upload ./runtime/build/src/libcsharp-module.so coreclr-module/beta/x64_linux/libcsharp-module.so
on:
repo: FabianTerhorst/coreclr-module
condition: "$LINUX_BETA" = true
condition: "$LINUX_BETA = true"
tags: true

0 comments on commit f67f15c

Please sign in to comment.