Skip to content

Commit

Permalink
Add rust configuration to appveyor and cirrus
Browse files Browse the repository at this point in the history
  • Loading branch information
tgross35 committed Sep 13, 2023
1 parent a3c370a commit 2e135b2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ init:
#- if "%APPVEYOR_BUILD_WORKER_IMAGE%" == "Visual Studio 2013" (call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" amd64)
# call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat"

install:
- appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
- rustup-init.exe -y --default-toolchain stable --profile minimal
- $Env:PATH += "$Env:USERPROFILE\.cargo\bin"

build_script:
- git submodule update --init
#- if "%MINGW%"=="1" call build-msys2.bat
Expand Down
3 changes: 3 additions & 0 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ task:
install_script:
- pkg install -y cmake git
- git submodule update --init
- >
fetch -q --no-tlsv1 -o- https://sh.rustup.rs |
sh -s -- -y --default-toolchain stable --profile minimal
build_script:
- cmake .
- make VERBOSE=1
Expand Down

0 comments on commit 2e135b2

Please sign in to comment.