We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 991bd3c commit 976a460Copy full SHA for 976a460
.travis.yml
@@ -41,17 +41,15 @@ before_install:
41
- sudo cp /usr/local/cuda/targets/x86_64-linux/lib/stubs/libcuda.so /usr/lib/
42
script:
43
- "./build.sh"
44
-- find release -type f -name *so -exec mv '{}' '{}'${CUDA_SHORT} \;
+- find release -type f -name *so -exec mv '{}' '{}'.${CUDA_SHORT} \;
45
- ls -l release/
46
47
-before_deploy:
48
- - export RELEASE_FILE=$(ls release/*.so)
49
- - echo "deploying $RELEASE_FILE to GitHub releases"
50
deploy:
51
provider: releases
52
api_key: $GITHUB_ACCESS_TOKEN
+ skip_cleanup: true
53
file_glob: true
54
- file: "${RELEASE_FILE}"
+ file: release/*
55
on:
56
repo: yzs981130/cuda-wrapper
57
tags: true
0 commit comments