mirror of
https://github.com/doukutsu-rs/doukutsu-rs
synced 2024-11-25 15:03:34 +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:
|
||||
files:
|
||||
|
@ -43,6 +43,13 @@ for:
|
|||
only:
|
||||
- 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:
|
||||
- appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
|
||||
- rustup-init -yv --default-toolchain %channel% --default-host %target%
|
||||
|
@ -76,7 +83,14 @@ for:
|
|||
matrix:
|
||||
only:
|
||||
- appveyor_build_worker_image: macos-monterey
|
||||
|
||||
|
||||
init:
|
||||
- ps: >-
|
||||
if ($env:APPVEYOR_REPO_TAG -eq "true")
|
||||
{
|
||||
Update-AppveyorBuild -Version "$env:APPVEYOR_REPO_TAG_NAME"
|
||||
}
|
||||
|
||||
install:
|
||||
- curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -yv --default-toolchain $channel
|
||||
- export PATH=$PATH:$HOME/.cargo/bin
|
||||
|
@ -112,6 +126,13 @@ for:
|
|||
only:
|
||||
- appveyor_build_worker_image: Ubuntu
|
||||
|
||||
init:
|
||||
- ps: >-
|
||||
if ($env:APPVEYOR_REPO_TAG -eq "true")
|
||||
{
|
||||
Update-AppveyorBuild -Version "$env:APPVEYOR_REPO_TAG_NAME"
|
||||
}
|
||||
|
||||
install:
|
||||
- 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
|
||||
|
|
Loading…
Reference in a new issue