Skip to content
This repository was archived by the owner on Feb 2, 2023. It is now read-only.

Commit 59042ae

Browse files
committed
Fix CI settings
1 parent 3b07e8c commit 59042ae

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

.appveyor.yml

+10-4
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,23 @@ environment:
99
RUST_BACKTRACE: 1
1010
matrix:
1111
# 32-bit
12-
- RUBY_VERSION: 23
12+
- RUBY_VERSION: 26
1313
RUST_HOST: i686-pc-windows-msvc
1414
RUST_VERSION: stable
15+
MINGW64_PATH: C:\mingw-w64\i686-6.3.0-posix-dwarf-rt_v5-rev1
16+
MSYS_PATH: C:\MinGW\msys\1.0
1517
# 64-bit
16-
- RUBY_VERSION: 23-x64
18+
- RUBY_VERSION: 26-x64
1719
RUST_HOST: x86_64-pc-windows-msvc
1820
RUST_VERSION: stable
21+
MINGW64_PATH: C:\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0
22+
MSYS_PATH: C:\msys64
1923
# 64-bit
20-
- RUBY_VERSION: 23-x64
24+
- RUBY_VERSION: 26-x64
2125
RUST_HOST: x86_64-pc-windows-msvc
2226
RUST_VERSION: nightly
27+
MINGW64_PATH: C:\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0
28+
MSYS_PATH: C:\msys64
2329

2430
matrix:
2531
allow_failures:
@@ -29,7 +35,7 @@ matrix:
2935
fast_finish: true
3036

3137
install:
32-
- set PATH=C:\Ruby%RUBY_VERSION%\bin;C:\Ruby%RUBY_VERSION%\DevKit\bin;C:\Ruby%RUBY_VERSION%\DevKit\mingw\bin;%HOMEDRIVE%%HOMEPATH%\.cargo\bin;%APPVEYOR_BUILD_FOLDER%\ruby\windows_build;%PATH%
38+
- set PATH=C:\Ruby%RUBY_VERSION%\bin;%MINGW64_PATH%;%MSYS_PATH%\bin;%HOMEDRIVE%%HOMEPATH%\.cargo\bin;%APPVEYOR_BUILD_FOLDER%\ruby\windows_build;%PATH%
3339
- echo %PATH%
3440
- set HELIX_ROOT=%APPVEYOR_BUILD_FOLDER%
3541
- IF NOT EXIST %HOMEDRIVE%%HOMEPATH%\.cargo\bin (curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain %RUST_VERSION% --default-host %RUST_HOST% -y)

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ before_install:
4545
- if [ ! -e "$HOME/.cargo/bin" ]; then curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain $RUST_VERSION -y; fi
4646
- export PATH="$HOME/.cargo/bin:$PATH"
4747
- rustup default $RUST_VERSION
48+
- gem install bundler
4849

4950
install:
5051
- ./scripts/ci-install

0 commit comments

Comments
 (0)