Skip to content
This repository was archived by the owner on Dec 10, 2022. It is now read-only.

Add counters to motd #35

Merged
merged 2 commits into from
Dec 4, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 14 additions & 15 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -12,25 +12,24 @@ branches:

environment:
matrix:
- channel: stable
target: x86_64-pc-windows-gnu
# stable x86_64 with static libsodium from sources
- TARGET: x86_64-pc-windows-msvc
RUST_CHANNEL: stable

# stable x86 with static libsodium from sources
- TARGET: i686-pc-windows-msvc
RUST_CHANNEL: stable
# env variables for debugging
RUST_BACKTRACE: "1"

install:
# install libsodium
- mkdir deps && cd deps
- appveyor-retry appveyor DownloadFile https://download.libsodium.org/libsodium/releases/libsodium-1.0.16-mingw.tar.gz -FileName libsodium.tar.gz
- 7z x libsodium.tar.gz -so | 7z x -si -ttar > nul
- set SODIUM_STATIC=1
- set SODIUM_LIB_DIR=C:\projects\tox-node\deps\libsodium-win64\lib
- cd C:\projects\tox-node
# install rustc & cargo
- appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
- rustup-init -yv --default-toolchain %channel% --default-host %target%
- set PATH=%PATH%;%USERPROFILE%\.cargo\bin
- rustc -vV
- cargo -vV
- ps: |
# Install Rust
appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
cmd.exe /c .\rustup-init.exe -y --default-host "$env:TARGET" --default-toolchain "$env:RUST_CHANNEL" 2`>`&1
$env:PATH += ";$env:USERPROFILE\.cargo\bin"
rustc -V
cargo -V
build: false

2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: rust
rust:
- 1.26.0
- 1.30.1
- stable
- beta
- nightly
Loading