fork of https://github.com/rustwasm/wasm-pack for the needs of NextGraph.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.3 KiB
43 lines
1.3 KiB
environment:
|
|
global:
|
|
RUSTFLAGS: -C target-feature=+crt-static
|
|
|
|
install:
|
|
- ps: Install-Product node 10
|
|
- appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
|
|
- rustup-init.exe -y --default-host x86_64-pc-windows-msvc --default-toolchain nightly
|
|
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
|
|
- set RUST_BACKTRACE=1
|
|
- rustup target add wasm32-unknown-unknown --toolchain nightly
|
|
- rustc -V
|
|
- cargo -V
|
|
|
|
build: false
|
|
|
|
test_script:
|
|
- cargo test --release --locked
|
|
|
|
before_deploy:
|
|
- ps: |
|
|
$NAME = "wasm-pack-${env:APPVEYOR_REPO_TAG_NAME}-x86_64-pc-windows-msvc"
|
|
New-Item -Path $NAME -ItemType directory
|
|
Copy-Item target/release/wasm-pack.exe "${NAME}/"
|
|
Copy-Item target/release/wasm-pack.exe wasm-pack-init.exe
|
|
Copy-Item LICENSE-MIT "${NAME}/"
|
|
Copy-Item LICENSE-APACHE "${NAME}/"
|
|
Copy-Item README.md "${NAME}/"
|
|
7z a -ttar "${NAME}.tar" "${NAME}"
|
|
7z a "${NAME}.tar.gz" "${NAME}.tar"
|
|
Push-AppveyorArtifact "${NAME}.tar.gz"
|
|
Push-AppveyorArtifact wasm-pack-init.exe
|
|
|
|
deploy:
|
|
artifact: /.*\.tar.gz/, /.*\.exe/
|
|
description: 'Appveyor Automated Release'
|
|
provider: GitHub
|
|
draft: false
|
|
prerelease: false
|
|
auth_token:
|
|
secure: iHsRUqwGf/Zh7OuYpHOWQL8buaOL+c8/6kXLRly8V2j0LCUo7CcDs0NxQ0vl2bhZ
|
|
on:
|
|
appveyor_repo_tag: true
|
|
|