2020-12-04 13:41:11 +00:00
|
|
|
version: "0.1.0.{build}-{branch}"
|
|
|
|
|
|
|
|
environment:
|
|
|
|
global:
|
|
|
|
PROJECT_NAME: doukutsu-rs
|
|
|
|
matrix:
|
2021-08-13 02:45:27 +00:00
|
|
|
- channel: nightly
|
|
|
|
target: x86_64-pc-windows-msvc
|
|
|
|
target_name: win64
|
|
|
|
job_name: windows-x64
|
|
|
|
appveyor_build_worker_image: Visual Studio 2019
|
2021-02-10 14:24:47 +00:00
|
|
|
# - channel: stable
|
|
|
|
# target: i686-pc-windows-msvc
|
|
|
|
# target_name: win32
|
|
|
|
# job_name: windows-x32
|
2021-08-13 02:09:22 +00:00
|
|
|
- channel: nightly
|
|
|
|
target: x86_64-apple-darwin
|
2021-08-13 01:46:41 +00:00
|
|
|
target_name: macos
|
|
|
|
job_name: mac-x64
|
|
|
|
appveyor_build_worker_image: macos
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
fast_finish: true
|
|
|
|
|
|
|
|
for:
|
|
|
|
-
|
|
|
|
matrix:
|
|
|
|
only:
|
|
|
|
- appveyor_build_worker_image: Visual Studio 2019
|
|
|
|
|
|
|
|
install:
|
|
|
|
- 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
|
|
|
|
- rustup update
|
|
|
|
- rustup default %channel%
|
|
|
|
- rustc -vV
|
|
|
|
- cargo -vV
|
|
|
|
|
|
|
|
cache:
|
|
|
|
- '%USERPROFILE%\.cache\sccache -> Cargo.toml'
|
|
|
|
- '%USERPROFILE%\.cargo -> Cargo.toml'
|
|
|
|
- 'target -> Cargo.toml'
|
|
|
|
|
|
|
|
build_script:
|
|
|
|
- set DRS_BUILD_VERSION_OVERRIDE=%APPVEYOR_BUILD_VERSION%
|
|
|
|
- cargo build --release --bin doukutsu-rs
|
|
|
|
- mkdir release
|
|
|
|
- copy target\release\doukutsu-rs.exe release
|
|
|
|
- cd release
|
|
|
|
- appveyor DownloadFile https://github.com/doukutsu-rs/game-data/archive/master.zip -FileName ../game-data.zip
|
|
|
|
- 7z x ../game-data.zip
|
|
|
|
- rename game-data-master data
|
|
|
|
- 7z a ../doukutsu-rs_%target_name%.zip *
|
|
|
|
- appveyor PushArtifact ../doukutsu-rs_%target_name%.zip
|
|
|
|
|
|
|
|
-
|
|
|
|
matrix:
|
|
|
|
only:
|
|
|
|
- appveyor_build_worker_image: macos
|
|
|
|
|
|
|
|
install:
|
2021-08-13 02:23:50 +00:00
|
|
|
- curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -yv --default-toolchain $channel --default-host $target
|
2021-08-13 01:46:41 +00:00
|
|
|
- export PATH=$PATH:$HOME/.cargo/bin
|
|
|
|
- rustup update
|
|
|
|
- rustup default $channel
|
|
|
|
- rustc -vV
|
|
|
|
- cargo -vV
|
2021-08-13 01:48:19 +00:00
|
|
|
- cargo install cargo-bundle
|
2021-08-13 01:46:41 +00:00
|
|
|
|
|
|
|
cache:
|
|
|
|
- '$HOME/.cache/sccache -> Cargo.toml'
|
|
|
|
- '$HOME/.cargo -> Cargo.toml'
|
|
|
|
- 'target -> Cargo.toml'
|
2020-12-04 13:41:11 +00:00
|
|
|
|
2021-08-13 01:46:41 +00:00
|
|
|
build_script:
|
|
|
|
- export DRS_BUILD_VERSION_OVERRIDE=$APPVEYOR_BUILD_VERSION
|
|
|
|
- appveyor DownloadFile https://github.com/doukutsu-rs/game-data/archive/master.zip -FileName ../game-data.zip
|
|
|
|
- 7z x ../game-data.zip
|
2021-08-13 02:30:07 +00:00
|
|
|
- mv game-data-master data
|
2021-08-13 01:46:41 +00:00
|
|
|
- cargo bundle --release
|
|
|
|
- mkdir release
|
|
|
|
- cp -a target/release/bundle/osx/doukutsu-rs.app ./release/doukutsu-rs.app
|
|
|
|
- cd release
|
|
|
|
- 7z a ../doukutsu-rs_$target_name.zip *
|
|
|
|
- appveyor PushArtifact ../doukutsu-rs_$target_name.zip
|