mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-28 23:31:56 +00:00
924c94f74f
Update the vendored third-party dependencies for the mozjs-sys crate. This picks up recent bug-fixes and reduces noise in unrelated runs of 'mach vendor'. The libc crate is also used by the rust url parser. gcc 0.3.35 -> 0.3.40 libc 0.2.16 -> 0.2.18 libz-sys 1.0.6 -> 1.0.10 MozReview-Commit-ID: 5ri4nOtQQ1n --HG-- extra : rebase_source : e3bfd2be7f3e615822a9177634dd8545236f0a19
26 lines
643 B
YAML
26 lines
643 B
YAML
environment:
|
|
matrix:
|
|
- TARGET: x86_64-pc-windows-gnu
|
|
MSYS2_BITS: 64
|
|
- TARGET: i686-pc-windows-gnu
|
|
MSYS2_BITS: 32
|
|
- TARGET: x86_64-pc-windows-msvc
|
|
- TARGET: i686-pc-windows-msvc
|
|
install:
|
|
- curl -sSf -o rustup-init.exe https://win.rustup.rs/
|
|
- rustup-init.exe -y --default-host %TARGET%
|
|
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
|
|
- if defined MSYS2_BITS set PATH=%PATH%;C:\msys64\mingw%MSYS2_BITS%\bin
|
|
- rustc -V
|
|
- cargo -V
|
|
|
|
build: false
|
|
|
|
test_script:
|
|
- cargo test --target %TARGET%
|
|
- cargo run --manifest-path libc-test/Cargo.toml --target %TARGET%
|
|
|
|
cache:
|
|
- target
|
|
- C:\Users\appveyor\.cargo\registry
|