mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-23 03:18:49 +03:00
13 lines
No EOL
433 B
YAML
13 lines
No EOL
433 B
YAML
steps:
|
|
- script: |
|
|
export CXX=${CXX_COMPILER}
|
|
export CC=${C_COMPILER}
|
|
# Use TRAVIS_TAG if defined, or the short commit SHA otherwise
|
|
export VERSION=${TRAVIS_TAG:-$(git rev-parse --short HEAD)}
|
|
- script: |
|
|
./.ci/script.sh
|
|
sed -i -e "s/VERSION_NAME_VALUE/${VERSION}/g" ./.ci/bintray-release.json || true
|
|
cp ./.ci/bintray-release.json .
|
|
- script: |
|
|
./.ci/install.sh
|
|
export PATH=/usr/local/bin:${PATH} |