diff options
author | Daniel Mueller <deso@posteo.net> | 2019-11-01 07:42:33 -0700 |
---|---|---|
committer | Daniel Mueller <deso@posteo.net> | 2019-11-01 07:42:33 -0700 |
commit | 49be10a8179165d24bbb8eb3490c4ca6f94b42c4 (patch) | |
tree | 642978648e57ba8b162a7378e8754df85ca83b37 /libc/ci/azure.yml | |
parent | 9f3991a74fa5124e298582afa60b229dd005be40 (diff) | |
download | nitrocli-49be10a8179165d24bbb8eb3490c4ca6f94b42c4.tar.gz nitrocli-49be10a8179165d24bbb8eb3490c4ca6f94b42c4.tar.bz2 |
Update libc crate to 0.2.66
This change updates the libc crate to version 0.2.66.
Import subrepo libc/:libc at 4f11029a68040c90acf771976b019c1ef273a8cd
Diffstat (limited to 'libc/ci/azure.yml')
-rw-r--r-- | libc/ci/azure.yml | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/libc/ci/azure.yml b/libc/ci/azure.yml index 4526361..da25a26 100644 --- a/libc/ci/azure.yml +++ b/libc/ci/azure.yml @@ -25,7 +25,7 @@ jobs: TARGET: x86_64-unknown-linux-gnu - job: DockerLinuxTier2 - dependsOn: DockerLinuxTier1 + #dependsOn: DockerLinuxTier1 pool: vmImage: ubuntu-16.04 steps: @@ -46,8 +46,10 @@ jobs: TARGET: arm-unknown-linux-gnueabihf arm-unknown-linux-musleabihf: TARGET: arm-unknown-linux-musleabihf - asmjs-unknown-emscripten: - TARGET: asmjs-unknown-emscripten + # Disabled because currently broken, see: + # https://github.com/rust-lang/libc/issues/1591 + # asmjs-unknown-emscripten: + # TARGET: asmjs-unknown-emscripten i686-linux-android: TARGET: i686-linux-android i686-unknown-linux-musl: @@ -74,8 +76,10 @@ jobs: # TARGET: wasm32-wasi sparc64-unknown-linux-gnu: TARGET: sparc64-unknown-linux-gnu - wasm32-unknown-emscripten: - TARGET: wasm32-unknown-emscripten + # Disabled because currently broken, see: + # https://github.com/rust-lang/libc/issues/1591 + # wasm32-unknown-emscripten: + # TARGET: wasm32-unknown-emscripten x86_64-linux-android: TARGET: x86_64-linux-android x86_64-unknown-linux-gnux32: @@ -122,10 +126,12 @@ jobs: ARCH: x86_64 x86_64-pc-windows-msvc: TARGET: x86_64-pc-windows-msvc - i686-pc-windows-gnu: - TARGET: i686-pc-windows-gnu - ARCH_BITS: 32 - ARCH: i686 + # Disabled because broken: + # https://github.com/rust-lang/libc/issues/1592 + #i686-pc-windows-gnu: + # TARGET: i686-pc-windows-gnu + # ARCH_BITS: 32 + # ARCH: i686 i686-pc-windows-msvc: TARGET: i686-pc-windows-msvc @@ -136,7 +142,7 @@ jobs: - template: azure-install-rust.yml - script: sh ci/style.sh displayName: Check style - - script: sh ci/dox.sh + - script: LIBC_CI=1 sh ci/dox.sh displayName: Generate documentation - template: azure-configs/static-websites.yml@rustinfra parameters: @@ -169,7 +175,7 @@ jobs: vmImage: ubuntu-16.04 steps: - template: azure-install-rust.yml - - script: sh ./ci/build.sh + - script: LIBC_CI=1 sh ./ci/build.sh displayName: Execute build.sh strategy: matrix: @@ -198,7 +204,7 @@ jobs: vmImage: macos-10.13 steps: - template: azure-install-rust.yml - - script: sh ./ci/build.sh + - script: LIBC_CI=1 sh ./ci/build.sh displayName: Execute build.sh strategy: matrix: |