mirror of
https://github.com/doukutsu-rs/doukutsu-rs
synced 2025-04-25 23:44:13 +00:00
use tag for CI builds if present [ci skip]
This commit is contained in:
parent
bc3616d073
commit
efa8a47b8d
|
@ -1,4 +1,4 @@
|
||||||
version: "0.99.0.{build}-{branch}"
|
version: "0.100.0.{build}-{branch}"
|
||||||
|
|
||||||
skip_commits:
|
skip_commits:
|
||||||
files:
|
files:
|
||||||
|
@ -43,6 +43,13 @@ for:
|
||||||
only:
|
only:
|
||||||
- appveyor_build_worker_image: Visual Studio 2019
|
- appveyor_build_worker_image: Visual Studio 2019
|
||||||
|
|
||||||
|
init:
|
||||||
|
- ps: >-
|
||||||
|
if ($env:APPVEYOR_REPO_TAG -eq "true")
|
||||||
|
{
|
||||||
|
Update-AppveyorBuild -Version "$env:APPVEYOR_REPO_TAG_NAME"
|
||||||
|
}
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
|
- appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
|
||||||
- rustup-init -yv --default-toolchain %channel% --default-host %target%
|
- rustup-init -yv --default-toolchain %channel% --default-host %target%
|
||||||
|
@ -76,7 +83,14 @@ for:
|
||||||
matrix:
|
matrix:
|
||||||
only:
|
only:
|
||||||
- appveyor_build_worker_image: macos-monterey
|
- appveyor_build_worker_image: macos-monterey
|
||||||
|
|
||||||
|
init:
|
||||||
|
- ps: >-
|
||||||
|
if ($env:APPVEYOR_REPO_TAG -eq "true")
|
||||||
|
{
|
||||||
|
Update-AppveyorBuild -Version "$env:APPVEYOR_REPO_TAG_NAME"
|
||||||
|
}
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -yv --default-toolchain $channel
|
- curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -yv --default-toolchain $channel
|
||||||
- export PATH=$PATH:$HOME/.cargo/bin
|
- export PATH=$PATH:$HOME/.cargo/bin
|
||||||
|
@ -112,6 +126,13 @@ for:
|
||||||
only:
|
only:
|
||||||
- appveyor_build_worker_image: Ubuntu
|
- appveyor_build_worker_image: Ubuntu
|
||||||
|
|
||||||
|
init:
|
||||||
|
- ps: >-
|
||||||
|
if ($env:APPVEYOR_REPO_TAG -eq "true")
|
||||||
|
{
|
||||||
|
Update-AppveyorBuild -Version "$env:APPVEYOR_REPO_TAG_NAME"
|
||||||
|
}
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- sudo apt-get update && sudo apt-get -y install libasound2-dev libudev-dev libgl1-mesa-dev pkg-config
|
- sudo apt-get update && sudo apt-get -y install libasound2-dev libudev-dev libgl1-mesa-dev pkg-config
|
||||||
- curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -yv --default-toolchain $channel --default-host $target
|
- curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -yv --default-toolchain $channel --default-host $target
|
||||||
|
|
Loading…
Reference in a new issue