8 changed files with 351 additions and 0 deletions
@ -0,0 +1,98 @@
@@ -0,0 +1,98 @@
|
||||
# Based on the "trust" template v0.1.2 |
||||
# https://github.com/japaric/trust/tree/v0.1.2 |
||||
|
||||
dist: trusty |
||||
language: rust |
||||
services: docker |
||||
sudo: required |
||||
|
||||
# TODO Rust builds on stable by default, this can be |
||||
# overridden on a case by case basis down below. |
||||
|
||||
env: |
||||
global: |
||||
# TODO Update this to match the name of your project. |
||||
- CRATE_NAME=rusty-keys |
||||
|
||||
matrix: |
||||
# TODO These are all the build jobs. Adjust as necessary. Comment out what you |
||||
# don't need |
||||
include: |
||||
# Android |
||||
- env: TARGET=aarch64-linux-android DISABLE_TESTS=1 |
||||
- env: TARGET=arm-linux-androideabi DISABLE_TESTS=1 |
||||
- env: TARGET=armv7-linux-androideabi DISABLE_TESTS=1 |
||||
- env: TARGET=i686-linux-android DISABLE_TESTS=1 |
||||
- env: TARGET=x86_64-linux-android DISABLE_TESTS=1 |
||||
|
||||
# Linux |
||||
- env: TARGET=aarch64-unknown-linux-gnu |
||||
- env: TARGET=arm-unknown-linux-gnueabi |
||||
- env: TARGET=armv7-unknown-linux-gnueabihf |
||||
- env: TARGET=i686-unknown-linux-gnu |
||||
- env: TARGET=i686-unknown-linux-musl |
||||
- env: TARGET=mips-unknown-linux-gnu |
||||
- env: TARGET=mips64-unknown-linux-gnuabi64 |
||||
- env: TARGET=mips64el-unknown-linux-gnuabi64 |
||||
- env: TARGET=mipsel-unknown-linux-gnu |
||||
- env: TARGET=powerpc-unknown-linux-gnu |
||||
- env: TARGET=powerpc64-unknown-linux-gnu |
||||
- env: TARGET=powerpc64le-unknown-linux-gnu |
||||
- env: TARGET=s390x-unknown-linux-gnu DISABLE_TESTS=1 |
||||
- env: TARGET=x86_64-unknown-linux-gnu |
||||
- env: TARGET=x86_64-unknown-linux-musl |
||||
|
||||
# Windows |
||||
- env: TARGET=x86_64-pc-windows-gnu |
||||
|
||||
# Testing other channels |
||||
- env: TARGET=x86_64-unknown-linux-gnu |
||||
rust: nightly |
||||
|
||||
before_install: |
||||
- set -e |
||||
- rustup self update |
||||
|
||||
install: |
||||
- sh ci/install.sh |
||||
- source ~/.cargo/env || true |
||||
|
||||
script: |
||||
- bash ci/script.sh |
||||
|
||||
after_script: set +e |
||||
|
||||
before_deploy: |
||||
- sh ci/before_deploy.sh |
||||
|
||||
deploy: |
||||
# TODO update `api_key.secure` |
||||
# - Create a `public_repo` GitHub token. Go to: https://github.com/settings/tokens/new |
||||
# - Encrypt it: `travis encrypt 0123456789012345678901234567890123456789 |
||||
# - Paste the output down here |
||||
api_key: |
||||
secure: $GITHUB_OAUTH |
||||
file_glob: true |
||||
file: $CRATE_NAME-$TRAVIS_TAG-$TARGET* |
||||
on: |
||||
# TODO Here you can pick which targets will generate binary releases |
||||
# In this example, there are some targets that are tested using the stable |
||||
# and nightly channels. This condition makes sure there is only one release |
||||
# for such targets and that's generated using the stable channel |
||||
condition: $TRAVIS_RUST_VERSION = stable |
||||
tags: true |
||||
provider: releases |
||||
skip_cleanup: true |
||||
|
||||
cache: cargo |
||||
before_cache: |
||||
# Travis can't cache files that are not readable by "others" |
||||
- chmod -R a+r $HOME/.cargo |
||||
|
||||
branches: |
||||
only: |
||||
# release tags |
||||
- /^v\d+\.\d+\.\d+.*$/ |
||||
- master |
||||
- dev |
||||
|
@ -0,0 +1,90 @@
@@ -0,0 +1,90 @@
|
||||
# Based on the "trust" template v0.1.2 |
||||
# https://github.com/japaric/trust/tree/v0.1.2 |
||||
|
||||
environment: |
||||
global: |
||||
# TODO This is the Rust channel that build jobs will use by default but can be |
||||
# overridden on a case by case basis down below |
||||
RUST_VERSION: stable |
||||
|
||||
# TODO Update this to match the name of your project. |
||||
CRATE_NAME: rusty-keys |
||||
|
||||
# TODO These are all the build jobs. Adjust as necessary. Comment out what you |
||||
# don't need |
||||
matrix: |
||||
# MinGW |
||||
- TARGET: i686-pc-windows-gnu |
||||
- TARGET: x86_64-pc-windows-gnu |
||||
|
||||
# MSVC |
||||
- TARGET: i686-pc-windows-msvc |
||||
- TARGET: x86_64-pc-windows-msvc |
||||
|
||||
# Testing other channels |
||||
- TARGET: x86_64-pc-windows-gnu |
||||
RUST_VERSION: nightly |
||||
- TARGET: x86_64-pc-windows-msvc |
||||
RUST_VERSION: nightly |
||||
|
||||
install: |
||||
- ps: >- |
||||
If ($Env:TARGET -eq 'x86_64-pc-windows-gnu') { |
||||
$Env:PATH += ';C:\msys64\mingw64\bin' |
||||
} ElseIf ($Env:TARGET -eq 'i686-pc-windows-gnu') { |
||||
$Env:PATH += ';C:\msys64\mingw32\bin' |
||||
} |
||||
- curl -sSf -o rustup-init.exe https://win.rustup.rs/ |
||||
- rustup-init.exe -y --default-host %TARGET% --default-toolchain %RUST_VERSION% |
||||
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin |
||||
- rustc -Vv |
||||
- cargo -V |
||||
|
||||
# TODO This is the "test phase", tweak it as you see fit |
||||
test_script: |
||||
# we don't run the "test phase" when doing deploys |
||||
- if [%APPVEYOR_REPO_TAG%]==[false] ( |
||||
cargo build --target %TARGET% --release && |
||||
cargo run --target %TARGET% --release --bin rusty-keys -- -h |
||||
) |
||||
|
||||
before_deploy: |
||||
# TODO Update this to build the artifacts that matter to you |
||||
- cargo rustc --target %TARGET% --release --bin rusty-keys -- -C lto |
||||
- ps: ci\before_deploy.ps1 |
||||
|
||||
deploy: |
||||
artifact: /rusty-keys-.*\.exe/ |
||||
# TODO update `auth_token.secure` |
||||
# - Create a `public_repo` GitHub token. Go to: https://github.com/settings/tokens/new |
||||
# - Encrypt it. Go to https://ci.appveyor.com/tools/encrypt |
||||
# - Paste the output down here |
||||
auth_token: |
||||
secure: gyQW6TqUY94X8IpcQeezbngBQA/PROaCPpr8K+8IxGBG5gf2iHra2CLlp/QJJZYx |
||||
description: '' |
||||
on: |
||||
# TODO Here you can pick which targets will generate binary releases |
||||
# In this example, there are some targets that are tested using the stable |
||||
# and nightly channels. This condition makes sure there is only one release |
||||
# for such targets and that's generated using the stable channel |
||||
RUST_VERSION: stable |
||||
appveyor_repo_tag: true |
||||
provider: GitHub |
||||
|
||||
cache: |
||||
- C:\Users\appveyor\.cargo\registry |
||||
- target |
||||
|
||||
branches: |
||||
only: |
||||
# Release tags |
||||
- /^v\d+\.\d+\.\d+.*$/ |
||||
- master |
||||
- dev |
||||
|
||||
notifications: |
||||
- provider: Email |
||||
on_build_success: false |
||||
|
||||
# Building is done in the test phase, so we disable Appveyor's build phase. |
||||
build: false |
@ -0,0 +1,21 @@
@@ -0,0 +1,21 @@
|
||||
# This script takes care of packaging the build artifacts that will go in the |
||||
# release zipfile |
||||
|
||||
$SRC_DIR = $PWD.Path |
||||
$STAGE = [System.Guid]::NewGuid().ToString() |
||||
|
||||
Set-Location $ENV:Temp |
||||
New-Item -Type Directory -Name $STAGE |
||||
Set-Location $STAGE |
||||
|
||||
$ZIP = "$SRC_DIR\$($Env:CRATE_NAME)-$($Env:APPVEYOR_REPO_TAG_NAME)-$($Env:TARGET).exe" |
||||
|
||||
# TODO Update this to package the right artifacts |
||||
Copy-Item "$SRC_DIR\target\$($Env:TARGET)\release\rusty-keys.exe" "$ZIP" |
||||
|
||||
Push-AppveyorArtifact "$ZIP" |
||||
|
||||
Remove-Item *.* -Force |
||||
Set-Location .. |
||||
Remove-Item $STAGE |
||||
Set-Location $SRC_DIR |
@ -0,0 +1,26 @@
@@ -0,0 +1,26 @@
|
||||
# This script takes care of building your crate and packaging it for release |
||||
|
||||
set -ex |
||||
|
||||
main() { |
||||
local src=$(pwd) |
||||
|
||||
test -f Cargo.lock || cargo generate-lockfile |
||||
|
||||
# TODO Update this to build the artifacts that matter to you |
||||
cross rustc --bin rusty-keys --target $TARGET --release -- -C lto |
||||
|
||||
# TODO Update this to package the right artifacts, this needs to handle .exe too... |
||||
case $TARGET in |
||||
x86_64-pc-windows-gnu) |
||||
strip target/$TARGET/release/rusty-keys.exe || echo 'strip failed, ignoring...' |
||||
cp target/$TARGET/release/rusty-keys.exe $src/$CRATE_NAME-$TRAVIS_TAG-$TARGET.exe |
||||
;; |
||||
*) |
||||
strip target/$TARGET/release/rusty-keys || echo 'strip failed, ignoring...' |
||||
cp target/$TARGET/release/rusty-keys $src/$CRATE_NAME-$TRAVIS_TAG-$TARGET |
||||
;; |
||||
esac |
||||
} |
||||
|
||||
main |
@ -0,0 +1,28 @@
@@ -0,0 +1,28 @@
|
||||
-----BEGIN PRIVATE KEY----- |
||||
MIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQCrvZ+p0/2i/p1s |
||||
xzg3ydOS4z5S3QD0WAD1gdBTUBPjqmeGNbtXl5XLGPTYJeBqNNGRv6louB+jL8U+ |
||||
TSBsyyARVZfJ9EDU3iG1fOQzz6sK8yhVL15bL4wJHobDGkL1zc0//ozDbr9iH5Xi |
||||
5Xh1q9lEyLMviASNjZbWcdGWxxKQRceluzcTyowesBr7K9nQaQF7cSmetCYaA1L9 |
||||
JXokHY3P8pPEOhfo8SI7Lkt7XzKrnI0RBEIQBDF5F/XsKHO2Iso8bVq1huNr37MH |
||||
QDEDo+D8803oFS+89j9SFDv2QgITZgl0gtY5w911qbNtyz0hWYloXzmlPH2QF/+Z |
||||
XThI2Kd/AgMBAAECggEARmvN4Xxsv346HRWfhri6ibumnaHDt22yjvj47ICkdzEz |
||||
nAPCWwtsP8hu9Yaqe8JGwMXfeHIvfuGitoY3qoSsFI+NWyFNyDuBhQK+LESWNTo5 |
||||
qpxuy2M2v7KFvdCx7krCQ+Bj5esujNS4yD4h49Zgk+TcHLxgaY7KcAphz7q3cPKP |
||||
hJPkwSvFmLMdqomyLJfBTWPx6Ue3ioAfKxM62hbaYlBth1ch5YqOhL84YCMnPmbq |
||||
hL/iTTlPcXeZoCodEHoOac/t8Nvv4fRetrBqk9uMZXZ1Bm9VfKbVDysfiKp9W+np |
||||
uvtYUht/TdlrzjE01h3QHNnkYgJA+yuK/qjL0nvoYQKBgQDjN4HdZqA7ZBPvQUtq |
||||
LVfpm2jy/8Sf3ewUUx7Pwselft7FOpKzkouVhdyWY8BweN97zwaYPJo7OtfMzT3Y |
||||
NPO5Vz7nxMcvwZXir0VV514lLIYjqkZkDY94thGayFaF8DmyqfIfTuyVPrigRfOR |
||||
8+dbYJrSVn9hnP4i9cxoIu39TwKBgQDBfxAFp2gJ1G3U2YAjNt4qrbsdPZvsX6CI |
||||
A8T5EuiPanAqaVWbQnkPFQq077qBSlCI/zUunw01I0pyuR74paY7PaiKT3hLkovh |
||||
v2VlOFEMaA7K/TTjv6tZS5P8DXuM/r34h5XRVsaKXKPNBGoAcbvanJ/96N42j+E1 |
||||
G4+R8FMG0QKBgFMmKfkKqFJzojPpEh8N7uEHRVW/sYXLYaxiaqEfJ45xqjZE5BCg |
||||
7UHPldTXNkIyiZ42ObSWYN6R/wzsgthPMG2/9r48LaRVVHN7LoVsQPCbpY8BrfbJ |
||||
W5qSDkk1TSyAp6yxMnCwojVPmaLVVngv6Jdw99dHXiAronjKuH3XYn5TAoGAUUpd |
||||
Y9Kx3bdWMR7zO1gYvBtiyeURNZvzKFFVFkMAWwgfeWHpaiHiFBkF93/jfd/Ht9Zn |
||||
9F8zwEhERbBKN7H4BVlhDkJWyoEVrVCoe37OZgTtehAogSoMBaa/1Buh9VksXFYx |
||||
9dGb9ZL36fDZy7f8cNpuSNDlUkzeE16x0WECsJECgYBdekYJFJWppHjQ0ID5Jt1T |
||||
GHQIovXFsHfACIKC1lyytqgtEdSaWQD0SfFsg/s6BYcW7bfs/tejTnbJySvcp3rC |
||||
+FCznrEfk6wVFuj/nrgB/MpmxbsG2N5EmchRX5YJHVDRtWpQxPkNgRvdNBPkPY54 |
||||
5zSUEJh+lLSg+ZjuM52eOg== |
||||
-----END PRIVATE KEY----- |
@ -0,0 +1,21 @@
@@ -0,0 +1,21 @@
|
||||
-----BEGIN CERTIFICATE----- |
||||
MIIDazCCAlOgAwIBAgIUfeb7Ocg4fLv5BEiXLhLS5/fQGm0wDQYJKoZIhvcNAQEL |
||||
BQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoM |
||||
GEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEyMTcwMjE2MDhaFw0yOTEy |
||||
MTQwMjE2MDhaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEw |
||||
HwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEB |
||||
AQUAA4IBDwAwggEKAoIBAQCrvZ+p0/2i/p1sxzg3ydOS4z5S3QD0WAD1gdBTUBPj |
||||
qmeGNbtXl5XLGPTYJeBqNNGRv6louB+jL8U+TSBsyyARVZfJ9EDU3iG1fOQzz6sK |
||||
8yhVL15bL4wJHobDGkL1zc0//ozDbr9iH5Xi5Xh1q9lEyLMviASNjZbWcdGWxxKQ |
||||
RceluzcTyowesBr7K9nQaQF7cSmetCYaA1L9JXokHY3P8pPEOhfo8SI7Lkt7XzKr |
||||
nI0RBEIQBDF5F/XsKHO2Iso8bVq1huNr37MHQDEDo+D8803oFS+89j9SFDv2QgIT |
||||
Zgl0gtY5w911qbNtyz0hWYloXzmlPH2QF/+ZXThI2Kd/AgMBAAGjUzBRMB0GA1Ud |
||||
DgQWBBSxoWXwmMEmKrsRsii2l1/IBhlvMzAfBgNVHSMEGDAWgBSxoWXwmMEmKrsR |
||||
sii2l1/IBhlvMzAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQB3 |
||||
NIlwmAL3FBrqHmg5M+zh+xKkNl/O8SK4bJwhPoTYR+DHsDlEQWvwSVaGV5HGyqy2 |
||||
cv39kHJ6OisSuOitESV4gdOUZvm/WCSV5xHpokJpGlztRSKi4iwFNONn0LUi4lnF |
||||
gkYgjS4OfOCjVJ0YgAkYaBYALM3PTY3VpG32vaz62A7mIzO5Jn/kMtEIgFT+32Be |
||||
BE/8E+pcOhgkvoE1xwv0STbrnM8dGN8/zyXvb1wt4b2ijkBlT5Wsqs0yvPa31SD0 |
||||
FDqc+4/H3bJXjwfBGDbf18sTY1UQEPyQdNC7vhiy/w2AgjVNjVpNBI9nvj+9rkZ5 |
||||
8m8sP3ldEkdIqSRCl95o |
||||
-----END CERTIFICATE----- |
@ -0,0 +1,47 @@
@@ -0,0 +1,47 @@
|
||||
set -ex |
||||
|
||||
main() { |
||||
local target= |
||||
if [ $TRAVIS_OS_NAME = linux ]; then |
||||
target=x86_64-unknown-linux-musl |
||||
sort=sort |
||||
else |
||||
target=x86_64-apple-darwin |
||||
sort=gsort # for `sort --sort-version`, from brew's coreutils. |
||||
fi |
||||
|
||||
# Builds for iOS are done on OSX, but require the specific target to be |
||||
# installed. |
||||
case $TARGET in |
||||
aarch64-apple-ios) |
||||
rustup target install aarch64-apple-ios |
||||
;; |
||||
armv7-apple-ios) |
||||
rustup target install armv7-apple-ios |
||||
;; |
||||
armv7s-apple-ios) |
||||
rustup target install armv7s-apple-ios |
||||
;; |
||||
i386-apple-ios) |
||||
rustup target install i386-apple-ios |
||||
;; |
||||
x86_64-apple-ios) |
||||
rustup target install x86_64-apple-ios |
||||
;; |
||||
esac |
||||
|
||||
# This fetches latest stable release |
||||
local tag=$(git ls-remote --tags --refs --exit-code https://github.com/japaric/cross \ |
||||
| cut -d/ -f3 \ |
||||
| grep -E '^v[0.1.0-9.]+$' \ |
||||
| $sort --version-sort \ |
||||
| tail -n1) |
||||
curl -LSfs https://japaric.github.io/trust/install.sh | \ |
||||
sh -s -- \ |
||||
--force \ |
||||
--git japaric/cross \ |
||||
--tag $tag \ |
||||
--target $target |
||||
} |
||||
|
||||
main |
@ -0,0 +1,20 @@
@@ -0,0 +1,20 @@
|
||||
# This script takes care of testing your crate |
||||
|
||||
set -ex |
||||
|
||||
# TODO This is the "test phase", tweak it as you see fit |
||||
main() { |
||||
cross build --target $TARGET --release |
||||
|
||||
if [ ! -z $DISABLE_TESTS ]; then |
||||
return |
||||
fi |
||||
|
||||
# only going to run --help I guess |
||||
cross run --target $TARGET --release --bin rusty-keys -- -h |
||||
} |
||||
|
||||
# we don't run the "test phase" when doing deploys |
||||
if [ -z $TRAVIS_TAG ]; then |
||||
main |
||||
fi |
Loading…
Reference in new issue