Created
March 16, 2022 09:57
-
-
Save bketelsen/2e2c82fb15edec676ae5194130fa7a55 to your computer and use it in GitHub Desktop.
Reproduce glibc error - spin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM rust:1.59-slim-buster | |
ENV DEBIAN_FRONTEND=noninteractive | |
RUN apt update && apt install -y wget git pkg-config libssl-dev make && rm -rf /var/lib/apt/lists/* | |
WORKDIR /tmp | |
RUN wget https://github.com/WebAssembly/binaryen/releases/download/version_105/binaryen-version_105-x86_64-linux.tar.gz | |
RUN tar -zxvf binaryen-version_105-x86_64-linux.tar.gz | |
RUN ls -la /tmp/binaryen-version_105/bin | |
RUN cp /tmp/binaryen-version_105/bin/* /usr/local/bin/ | |
RUN rm -rf /tmp/binaryen-version_105 | |
WORKDIR /usr/src/spin | |
RUN rustup target add wasm32-wasi | |
COPY . . | |
RUN make build | |
RUN cp target/release/spin /usr/local/bin/spin | |
WORKDIR / | |
RUN rm -rf /usr/src/spin | |
ENV RUST_LOG=spin=trace | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM rust:1.59-slim-buster | |
ENV DEBIAN_FRONTEND=noninteractive | |
RUN apt update && apt install -y wget git pkg-config libssl-dev make && rm -rf /var/lib/apt/lists/* | |
WORKDIR /tmp | |
RUN wget https://github.com/WebAssembly/binaryen/releases/download/version_105/binaryen-version_105-x86_64-linux.tar.gz | |
RUN tar -zxvf binaryen-version_105-x86_64-linux.tar.gz | |
RUN ls -la /tmp/binaryen-version_105/bin | |
RUN cp /tmp/binaryen-version_105/bin/* /usr/local/bin/ | |
RUN rm -rf /tmp/binaryen-version_105 | |
WORKDIR /usr/src/ | |
RUN git clone https://github.com/deislabs/wagi && cd wagi | |
WORKDIR /usr/src/wagi | |
RUN cargo install --path . | |
RUN which wagi | |
WORKDIR /usr/src | |
RUN rm -rf /usr/src/wagi | |
WORKDIR /usr/src/bartholomew | |
RUN rustup target add wasm32-wasi | |
COPY bart/ bart | |
COPY src/ src | |
COPY Cargo.lock . | |
COPY Cargo.toml . | |
COPY modules.toml . | |
COPY Makefile . | |
RUN make build | |
ENV RUST_LOG=spin=trace | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
❯ docker build . -f Dockerfile.base | |
Sending build context to Docker daemon 2.194GB | |
Step 1/17 : FROM rust:1.59-slim-buster | |
---> 3ca1d8ed11bf | |
Step 2/17 : ENV DEBIAN_FRONTEND=noninteractive | |
---> Using cache | |
---> 51c75bbb28e3 | |
Step 3/17 : RUN apt update && apt install -y wget git pkg-config libssl-dev make && rm -rf /var/lib/apt/lists/* | |
---> Using cache | |
---> 96d1b422d876 | |
Step 4/17 : WORKDIR /tmp | |
---> Using cache | |
---> 49e806de4ea4 | |
Step 5/17 : RUN wget https://github.com/WebAssembly/binaryen/releases/download/version_105/binaryen-version_105-x86_64-linux.tar.gz | |
---> Using cache | |
---> 00052a45d197 | |
Step 6/17 : RUN tar -zxvf binaryen-version_105-x86_64-linux.tar.gz | |
---> Using cache | |
---> eb76a16371a5 | |
Step 7/17 : RUN ls -la /tmp/binaryen-version_105/bin | |
---> Using cache | |
---> b5aa9328a8c9 | |
Step 8/17 : RUN cp /tmp/binaryen-version_105/bin/* /usr/local/bin/ | |
---> Using cache | |
---> 83c8acf30085 | |
Step 9/17 : RUN rm -rf /tmp/binaryen-version_105 | |
---> Using cache | |
---> daea42a43d86 | |
Step 10/17 : WORKDIR /usr/src/spin | |
---> Running in 6006c3c4a23c | |
Removing intermediate container 6006c3c4a23c | |
---> bfab1038a482 | |
Step 11/17 : RUN rustup target add wasm32-wasi | |
---> Running in 5f3a14ad8ebb | |
info: downloading component 'rust-std' for 'wasm32-wasi' | |
info: installing component 'rust-std' for 'wasm32-wasi' | |
Removing intermediate container 5f3a14ad8ebb | |
---> 14ea1400ff83 | |
Step 12/17 : COPY . . | |
---> 3f74dafd7f1b | |
Step 13/17 : RUN make build | |
---> Running in 1ceabe596df9 | |
cargo build --release | |
Updating crates.io index | |
Updating git repository `https://github.com/deislabs/wasi-experimental-http` | |
Updating git repository `https://github.com/bytecodealliance/wit-bindgen` | |
Updating git repository `https://github.com/deislabs/wagi` | |
Updating git repository `https://github.com/radu-matei/wasi-experimental-http` | |
Downloading crates ... | |
Downloaded validator_types v0.12.0 | |
Downloaded vec_map v0.8.2 | |
Downloaded once_cell v1.10.0 | |
Downloaded addr2line v0.17.0 | |
Downloaded tracing-serde v0.1.3 | |
Downloaded hashbrown v0.11.2 | |
Downloaded crossbeam-utils v0.8.7 | |
Downloaded fallible-iterator v0.2.0 | |
Downloaded async-trait v0.1.52 | |
Downloaded digest v0.9.0 | |
Downloaded atty v0.2.14 | |
Downloaded autocfg v1.1.0 | |
Downloaded twoway v0.1.8 | |
Downloaded idna v0.2.3 | |
Downloaded lock_api v0.4.6 | |
Downloaded ryu v1.0.9 | |
Downloaded serde v1.0.136 | |
Downloaded scopeguard v1.1.0 | |
Downloaded block-buffer v0.9.0 | |
Downloaded base64 v0.10.1 | |
Downloaded thiserror-impl v1.0.30 | |
Downloaded try-lock v0.2.3 | |
Downloaded tower-service v0.3.1 | |
Downloaded tokio-stream v0.1.8 | |
Downloaded heck v0.3.3 | |
Downloaded httpdate v1.0.2 | |
Downloaded dirs-sys v0.3.6 | |
Downloaded cfg-if v1.0.0 | |
Downloaded hyper-tls v0.5.0 | |
Downloaded bytes v1.1.0 | |
Downloaded instant v0.1.12 | |
Downloaded if_chain v1.0.2 | |
Downloaded fnv v1.0.7 | |
Downloaded cpufeatures v0.2.1 | |
Downloaded rand_chacha v0.2.2 | |
Downloaded chrono v0.4.19 | |
Downloaded sha1 v0.6.1 | |
Downloaded bcrypt v0.10.1 | |
Downloaded stable_deref_trait v1.2.0 | |
Downloaded block-buffer v0.10.2 | |
Downloaded subtle v2.4.1 | |
Downloaded rustc-hash v1.1.0 | |
Downloaded cap-fs-ext v0.24.1 | |
Downloaded remove_dir_all v0.5.3 | |
Downloaded http v0.2.6 | |
Downloaded cap-time-ext v0.24.1 | |
Downloaded tracing-futures v0.2.5 | |
Downloaded cipher v0.3.0 | |
Downloaded cap-rand v0.24.1 | |
Downloaded base64 v0.13.0 | |
Downloaded lazy_static v1.4.0 | |
Downloaded itoa v1.0.1 | |
Downloaded iovec v0.1.4 | |
Downloaded bindle v0.8.0 | |
Downloaded dirs-sys-next v0.1.2 | |
Downloaded either v1.6.1 | |
Downloaded dunce v1.0.2 | |
Downloaded dirs-next v2.0.0 | |
Downloaded cranelift-codegen-shared v0.81.1 | |
Downloaded cranelift-native v0.81.1 | |
Downloaded cpp_demangle v0.3.5 | |
Downloaded dirs v4.0.0 | |
Downloaded dirs v3.0.2 | |
Downloaded fastrand v1.7.0 | |
Downloaded foreign-types v0.3.2 | |
Downloaded foreign-types-shared v0.1.1 | |
Downloaded fs-set-times v0.15.0 | |
Downloaded form_urlencoded v1.0.1 | |
Downloaded filetime v0.2.15 | |
Downloaded futures-core v0.3.21 | |
Downloaded hyperx v0.13.2 | |
Downloaded fxhash v0.2.1 | |
Downloaded futures-task v0.3.21 | |
Downloaded futures-sink v0.3.21 | |
Downloaded futures-macro v0.3.21 | |
Downloaded futures-io v0.3.21 | |
Downloaded cranelift-wasm v0.81.1 | |
Downloaded jsonwebtoken v8.0.1 | |
Downloaded leb128 v0.2.5 | |
Downloaded itoa v0.4.8 | |
Downloaded lru v0.7.3 | |
Downloaded is-terminal v0.1.0 | |
Downloaded idna v0.1.5 | |
Downloaded num_threads v0.1.3 | |
Downloaded biscuit v0.5.0 | |
Downloaded blowfish v0.8.0 | |
Downloaded nix v0.23.1 | |
Downloaded time-macros v0.2.3 | |
Downloaded tracing v0.1.31 | |
Downloaded walkdir v2.3.2 | |
Downloaded crossbeam-deque v0.8.1 | |
Downloaded digest v0.10.3 | |
Downloaded crc32fast v1.3.2 | |
Downloaded fs_extra v1.2.0 | |
Downloaded hashbrown v0.9.1 | |
Downloaded same-file v1.0.6 | |
Downloaded byteorder v1.4.3 | |
Downloaded bitflags v1.3.2 | |
Downloaded bytes v0.4.12 | |
Downloaded jobserver v0.1.24 | |
Downloaded itertools v0.10.3 | |
Downloaded pkg-config v0.3.24 | |
Downloaded pin-project v1.0.10 | |
Downloaded slab v0.4.5 | |
Downloaded structopt-derive v0.4.18 | |
Downloaded structopt v0.3.26 | |
Downloaded data-encoding v2.3.2 | |
Downloaded cranelift-frontend v0.81.1 | |
Downloaded directories-next v2.0.0 | |
Downloaded tokio-native-tls v0.3.0 | |
Downloaded time v0.1.44 | |
Downloaded textwrap v0.11.0 | |
Downloaded tokio-rustls v0.22.0 | |
Downloaded syn v1.0.86 | |
Downloaded tracing-subscriber v0.3.9 | |
Downloaded tokio-util v0.6.9 | |
Downloaded tracing-subscriber v0.2.25 | |
Downloaded flate2 v1.0.22 | |
Downloaded zstd v0.10.0+zstd.1.5.2 | |
Downloaded tungstenite v0.14.0 | |
Downloaded log v0.4.14 | |
Downloaded rustls-native-certs v0.6.1 | |
Downloaded io-lifetimes v0.5.3 | |
Downloaded indexmap v1.6.2 | |
Downloaded env_logger v0.9.0 | |
Downloaded dtoa v0.4.8 | |
Downloaded tracing-log v0.1.2 | |
Downloaded tracing-attributes v0.1.19 | |
Downloaded tokio-rustls v0.23.2 | |
Downloaded pem v1.0.2 | |
Downloaded parking_lot v0.12.0 | |
Downloaded num-bigint v0.4.3 | |
Downloaded percent-encoding v1.0.1 | |
Downloaded mime_guess v2.0.4 | |
Downloaded ambient-authority v0.0.1 | |
Downloaded half v1.8.2 | |
Downloaded humantime v2.1.0 | |
Downloaded httparse v1.6.0 | |
Downloaded git2 v0.13.25 | |
Downloaded io-extras v0.13.2 | |
Downloaded signal-hook-mio v0.2.1 | |
Downloaded toml v0.5.8 | |
Downloaded sha2 v0.10.2 | |
Downloaded sha2 v0.9.9 | |
Downloaded sha1_smol v1.0.0 | |
Downloaded serde_derive v1.0.136 | |
Downloaded url-escape v0.1.0 | |
Downloaded webpki v0.21.4 | |
Downloaded zstd-safe v4.1.4+zstd.1.5.2 | |
Downloaded ahash v0.7.6 | |
Downloaded url v2.2.2 | |
Downloaded hyper-rustls v0.23.0 | |
Downloaded http v0.1.21 | |
Downloaded h2 v0.3.11 | |
Downloaded glob v0.3.0 | |
Downloaded pin-utils v0.1.0 | |
Downloaded parking_lot_core v0.9.1 | |
Downloaded parking_lot v0.11.2 | |
Downloaded symlink v0.1.0 | |
Downloaded strum_macros v0.23.1 | |
Downloaded sha-1 v0.9.8 | |
Downloaded strsim v0.8.0 | |
Downloaded num-complex v0.3.1 | |
Downloaded num_cpus v1.13.1 | |
Downloaded num-traits v0.2.14 | |
Downloaded wasmtime-wasi v0.34.1 | |
Downloaded path-absolutize v3.0.11 | |
Downloaded num v0.3.1 | |
Downloaded wasi-common v0.34.1 | |
Downloaded getrandom v0.2.5 | |
Downloaded getrandom v0.1.16 | |
Downloaded generic-array v0.14.5 | |
Downloaded proc-macro-error-attr v1.0.4 | |
Downloaded futures-executor v0.3.21 | |
Downloaded futures-channel v0.3.21 | |
Downloaded proc-macro-error v1.0.4 | |
Downloaded untrusted v0.7.1 | |
Downloaded wasmtime-cranelift v0.34.1 | |
Downloaded rustc-demangle v0.1.21 | |
Downloaded percent-encoding v2.1.0 | |
Downloaded unicode-xid v0.2.2 | |
Downloaded futures v0.3.21 | |
Downloaded wasi-cap-std-sync v0.34.1 | |
Downloaded warp v0.3.2 | |
Downloaded smallvec v1.8.0 | |
Downloaded redis v0.21.5 | |
Downloaded tokio-macros v1.7.0 | |
Downloaded unicase v1.4.2 | |
Downloaded unicode-bidi v0.3.7 | |
Downloaded tokio-tungstenite v0.15.0 | |
Downloaded tokio-tar v0.3.0 | |
Downloaded unicode-normalization v0.1.19 | |
Downloaded opaque-debug v0.3.0 | |
Downloaded unicase v2.6.0 | |
Downloaded openssl-probe v0.1.5 | |
Downloaded async-stream v0.3.2 | |
Downloaded buf_redux v0.8.4 | |
Downloaded quick-error v1.2.3 | |
Downloaded aho-corasick v0.7.18 | |
Downloaded rustls v0.19.1 | |
Downloaded matchers v0.0.1 | |
Downloaded reqwest v0.11.9 | |
Downloaded comfy-table v5.0.1 | |
Downloaded headers v0.3.7 | |
Downloaded utf-8 v0.7.6 | |
Downloaded wasmtime-cache v0.34.1 | |
Downloaded webpki v0.22.0 | |
Downloaded witx v0.9.1 | |
Downloaded sha-1 v0.10.0 | |
Downloaded serde_urlencoded v0.7.1 | |
Downloaded rand v0.7.3 | |
Downloaded rand v0.8.5 | |
Downloaded rand_chacha v0.3.1 | |
Downloaded regalloc v0.0.34 | |
Downloaded paste v1.0.6 | |
Downloaded ppv-lite86 v0.2.16 | |
Downloaded parking_lot_core v0.8.5 | |
Downloaded mio v0.8.0 | |
Downloaded openssl v0.10.38 | |
Downloaded tracing-core v0.1.22 | |
Downloaded unicode-segmentation v1.9.0 | |
Downloaded libssh2-sys v0.2.23 | |
Downloaded system-interface v0.20.0 | |
Downloaded async-stream-impl v0.3.2 | |
Downloaded async-compression v0.3.12 | |
Downloaded validator_derive v0.12.0 | |
Downloaded wiggle-macro v0.34.1 | |
Downloaded simple_asn1 v0.6.1 | |
Downloaded tinyvec_macros v0.1.0 | |
Downloaded unicode-width v0.1.9 | |
Downloaded matches v0.1.9 | |
Downloaded matchers v0.1.0 | |
Downloaded wasi-experimental-http-wasmtime v0.9.0 | |
Downloaded tokio v1.17.0 | |
Downloaded wasmtime-runtime v0.34.1 | |
Downloaded psm v0.1.17 | |
Downloaded quote v1.0.15 | |
Downloaded pulldown-cmark v0.8.0 | |
Downloaded thread_local v1.1.4 | |
Downloaded thiserror v1.0.30 | |
Downloaded rand_core v0.5.1 | |
Downloaded wasmtime-jit v0.34.1 | |
Downloaded version_check v0.1.5 | |
Downloaded sled v0.34.7 | |
Downloaded zeroize v1.3.0 | |
Downloaded xattr v0.2.2 | |
Downloaded num-rational v0.3.2 | |
Downloaded maybe-owned v0.3.4 | |
Downloaded wat v1.0.41 | |
Downloaded curve25519-dalek v3.2.1 | |
Downloaded zeroize_derive v1.3.2 | |
Downloaded wasmtime-types v0.34.1 | |
Downloaded wast v35.0.2 | |
Downloaded semver v1.0.6 | |
Downloaded scoped-tls v1.0.0 | |
Downloaded safemem v0.3.3 | |
Downloaded sct v0.7.0 | |
Downloaded wasmparser v0.82.0 | |
Downloaded linux-raw-sys v0.0.42 | |
Downloaded wasmtime v0.34.1 | |
Downloaded memoffset v0.6.5 | |
Downloaded openssl-sys v0.9.72 | |
Downloaded mio v0.7.14 | |
Downloaded mime v0.3.16 | |
Downloaded libc v0.2.119 | |
Downloaded rustix v0.33.3 | |
Downloaded zstd-sys v1.6.3+zstd.1.5.2 | |
Downloaded wasmtime-fiber v0.34.1 | |
Downloaded oci-distribution v0.6.0 | |
Downloaded serde_cbor v0.11.2 | |
Downloaded num-integer v0.1.44 | |
Downloaded native-tls v0.2.8 | |
Downloaded num-iter v0.1.42 | |
Downloaded wasmtime-environ v0.34.1 | |
Downloaded serde_json v1.0.79 | |
Downloaded wiggle v0.34.1 | |
Downloaded openid v0.9.3 | |
Downloaded wiggle-generate v0.34.1 | |
Downloaded object v0.27.1 | |
Downloaded ansi_term v0.12.1 | |
Downloaded sct v0.6.1 | |
Downloaded webpki-roots v0.22.2 | |
Downloaded want v0.3.0 | |
Downloaded version_check v0.9.4 | |
Downloaded pin-project-internal v1.0.10 | |
Downloaded oauth2 v4.1.0 | |
Downloaded url v1.7.2 | |
Downloaded cranelift-codegen v0.81.1 | |
Downloaded signature v1.5.0 | |
Downloaded path-dedot v3.0.14 | |
Downloaded pin-project-lite v0.2.8 | |
Downloaded signal-hook-registry v1.4.0 | |
Downloaded regex-automata v0.1.10 | |
Downloaded region v2.2.0 | |
Downloaded rayon-core v1.9.1 | |
Downloaded tinyvec v1.5.1 | |
Downloaded rustversion v1.0.6 | |
Downloaded www-authenticate v0.3.0 | |
Downloaded rustls-pemfile v0.3.0 | |
Downloaded rustls-pemfile v0.2.1 | |
Downloaded rand_core v0.6.3 | |
Downloaded num-bigint v0.3.3 | |
Downloaded wast v39.0.0 | |
Downloaded synstructure v0.12.6 | |
Downloaded rustls v0.20.4 | |
Downloaded tls-listener v0.4.0 | |
Downloaded anyhow v1.0.56 | |
Downloaded typenum v1.15.0 | |
Downloaded more-asserts v0.2.2 | |
Downloaded validator v0.12.0 | |
Downloaded socket2 v0.4.4 | |
Downloaded spin v0.5.2 | |
Downloaded fs2 v0.4.3 | |
Downloaded gimli v0.26.1 | |
Downloaded ctrlc v3.2.1 | |
Downloaded adler v1.0.2 | |
Downloaded termcolor v1.1.3 | |
Downloaded tempfile v3.3.0 | |
Downloaded regex v1.5.4 | |
Downloaded regex-syntax v0.6.25 | |
Downloaded crossbeam-channel v0.5.2 | |
Downloaded clap v2.34.0 | |
Downloaded signal-hook v0.3.13 | |
Downloaded sharded-slab v0.1.4 | |
Downloaded rayon v1.5.1 | |
Downloaded proc-macro2 v1.0.36 | |
Downloaded combine v4.6.3 | |
Downloaded multipart v0.18.0 | |
Downloaded miniz_oxide v0.4.4 | |
Downloaded memchr v2.4.1 | |
Downloaded cranelift-entity v0.81.1 | |
Downloaded cranelift-bforest v0.81.1 | |
Downloaded cc v1.0.73 | |
Downloaded hyper v0.14.17 | |
Downloaded cap-std v0.24.1 | |
Downloaded cap-primitives v0.24.1 | |
Downloaded bincode v1.3.3 | |
Downloaded language-tags v0.2.2 | |
Downloaded ipnet v2.4.0 | |
Downloaded id-arena v2.2.1 | |
Downloaded futures-util v0.3.21 | |
Downloaded file-per-thread-logger v0.1.5 | |
Downloaded env-file-reader v0.2.0 | |
Downloaded ed25519-dalek v1.0.1 | |
Downloaded ed25519 v1.4.0 | |
Downloaded docker_credential v1.0.1 | |
Downloaded crossterm v0.23.0 | |
Downloaded crossbeam-epoch v0.9.7 | |
Downloaded time v0.3.7 | |
Downloaded target-lexicon v0.12.3 | |
Downloaded strum v0.23.0 | |
Downloaded shellexpand v2.1.0 | |
Downloaded serde_path_to_error v0.1.7 | |
Downloaded quickcheck v1.0.3 | |
Downloaded http-body v0.4.4 | |
Downloaded encoding_rs v0.8.30 | |
Downloaded headers-core v0.2.0 | |
Downloaded crypto-common v0.1.3 | |
Downloaded cranelift-codegen-meta v0.81.1 | |
Downloaded backtrace v0.3.64 | |
Downloaded ring v0.16.20 | |
Downloaded libz-sys v1.1.5 | |
Downloaded libgit2-sys v0.12.26+1.3.0 | |
Compiling libc v0.2.119 | |
Compiling cfg-if v1.0.0 | |
Compiling unicode-xid v0.2.2 | |
Compiling proc-macro2 v1.0.36 | |
Compiling syn v1.0.86 | |
Compiling autocfg v1.1.0 | |
Compiling version_check v0.9.4 | |
Compiling log v0.4.14 | |
Compiling once_cell v1.10.0 | |
Compiling serde_derive v1.0.136 | |
Compiling serde v1.0.136 | |
Compiling memchr v2.4.1 | |
Compiling smallvec v1.8.0 | |
Compiling itoa v1.0.1 | |
Compiling scopeguard v1.1.0 | |
Compiling bitflags v1.3.2 | |
Compiling lazy_static v1.4.0 | |
Compiling hashbrown v0.9.1 | |
Compiling pin-project-lite v0.2.8 | |
Compiling typenum v1.15.0 | |
Compiling bytes v1.1.0 | |
Compiling parking_lot_core v0.9.1 | |
Compiling anyhow v1.0.56 | |
Compiling futures-core v0.3.21 | |
Compiling base64 v0.13.0 | |
Compiling pkg-config v0.3.24 | |
Compiling ppv-lite86 v0.2.16 | |
Compiling regex-syntax v0.6.25 | |
Compiling fnv v1.0.7 | |
Compiling spin v0.5.2 | |
Compiling futures-sink v0.3.21 | |
Compiling untrusted v0.7.1 | |
Compiling io-lifetimes v0.5.3 | |
Compiling cpufeatures v0.2.1 | |
Compiling futures-task v0.3.21 | |
Compiling tinyvec_macros v0.1.0 | |
Compiling matches v0.1.9 | |
Compiling futures-channel v0.3.21 | |
Compiling opaque-debug v0.3.0 | |
Compiling futures-util v0.3.21 | |
Compiling crc32fast v1.3.2 | |
Compiling pin-utils v0.1.0 | |
Compiling rustix v0.33.3 | |
Compiling futures-io v0.3.21 | |
Compiling httparse v1.6.0 | |
Compiling unicode-bidi v0.3.7 | |
Compiling slab v0.4.5 | |
Compiling linux-raw-sys v0.0.42 | |
Compiling percent-encoding v2.1.0 | |
Compiling fallible-iterator v0.2.0 | |
Compiling crossbeam-utils v0.8.7 | |
Compiling stable_deref_trait v1.2.0 | |
Compiling target-lexicon v0.12.3 | |
Compiling crossbeam-epoch v0.9.7 | |
Compiling unicode-segmentation v1.9.0 | |
Compiling serde_json v1.0.79 | |
Compiling ipnet v2.4.0 | |
Compiling ryu v1.0.9 | |
Compiling adler v1.0.2 | |
Compiling byteorder v1.4.3 | |
Compiling openssl-probe v0.1.5 | |
Compiling cranelift-codegen-shared v0.81.1 | |
Compiling httpdate v1.0.2 | |
Compiling async-trait v0.1.52 | |
Compiling try-lock v0.2.3 | |
Compiling either v1.6.1 | |
Compiling mime v0.3.16 | |
Compiling openssl v0.10.38 | |
Compiling unicode-width v0.1.9 | |
Compiling foreign-types-shared v0.1.1 | |
Compiling tower-service v0.3.1 | |
Compiling wasmparser v0.82.0 | |
Compiling rustc-hash v1.1.0 | |
Compiling rustls v0.20.4 | |
Compiling native-tls v0.2.8 | |
Compiling zstd-safe v4.1.4+zstd.1.5.2 | |
Compiling termcolor v1.1.3 | |
Compiling humantime v2.1.0 | |
Compiling rayon-core v1.9.1 | |
Compiling more-asserts v0.2.2 | |
Compiling encoding_rs v0.8.30 | |
Compiling rustc-demangle v0.1.21 | |
Compiling io-extras v0.13.2 | |
Compiling cpp_demangle v0.3.5 | |
Compiling leb128 v0.2.5 | |
Compiling ambient-authority v0.0.1 | |
Compiling cap-primitives v0.24.1 | |
Compiling wasmtime-cache v0.34.1 | |
Compiling wasmtime v0.34.1 | |
Compiling maybe-owned v0.3.4 | |
Compiling paste v1.0.6 | |
Compiling cap-std v0.24.1 | |
Compiling pulldown-cmark v0.8.0 | |
Compiling getrandom v0.1.16 | |
Compiling wasi-common v0.34.1 | |
Compiling id-arena v2.2.1 | |
Compiling system-interface v0.20.0 | |
Compiling cap-fs-ext v0.24.1 | |
Compiling remove_dir_all v0.5.3 | |
Compiling fastrand v1.7.0 | |
Compiling parking_lot_core v0.8.5 | |
Compiling ansi_term v0.12.1 | |
Compiling if_chain v1.0.2 | |
Compiling wit-bindgen-gen-wasmtime v0.1.0 (https://github.com/bytecodealliance/wit-bindgen?rev=e9c7c0a3405845cecd3fe06f3c20ab413302fc73#e9c7c0a3) | |
Compiling safemem v0.3.3 | |
Compiling wasmtime-wasi v0.34.1 | |
Compiling validator_types v0.12.0 | |
Compiling utf-8 v0.7.6 | |
Compiling itoa v0.4.8 | |
Compiling time-macros v0.2.3 | |
Compiling num_threads v0.1.3 | |
Compiling semver v1.0.6 | |
Compiling signature v1.5.0 | |
Compiling version_check v0.1.5 | |
Compiling quick-error v1.2.3 | |
Compiling subtle v2.4.1 | |
Compiling data-encoding v2.3.2 | |
Compiling half v1.8.2 | |
Compiling percent-encoding v1.0.1 | |
Compiling scoped-tls v1.0.0 | |
Compiling signal-hook v0.3.13 | |
Compiling language-tags v0.2.2 | |
Compiling rustversion v1.0.6 | |
Compiling same-file v1.0.6 | |
Compiling strsim v0.8.0 | |
Compiling vec_map v0.8.2 | |
Compiling fs_extra v1.2.0 | |
Compiling sha1_smol v1.0.0 | |
Compiling dtoa v0.4.8 | |
Compiling glob v0.3.0 | |
Compiling symlink v0.1.0 | |
Compiling dunce v1.0.2 | |
Compiling strum v0.23.0 | |
Compiling instant v0.1.12 | |
Compiling lock_api v0.4.6 | |
Compiling tracing-core v0.1.22 | |
Compiling sharded-slab v0.1.4 | |
Compiling thread_local v1.1.4 | |
Compiling path-dedot v3.0.14 | |
Compiling tinyvec v1.5.1 | |
Compiling rustls-pemfile v0.2.1 | |
Compiling pem v1.0.2 | |
Compiling rustls-pemfile v0.3.0 | |
Compiling generic-array v0.14.5 | |
Compiling unicase v2.6.0 | |
Compiling proc-macro-error-attr v1.0.4 | |
Compiling proc-macro-error v1.0.4 | |
Compiling ahash v0.7.6 | |
Compiling indexmap v1.6.2 | |
Compiling memoffset v0.6.5 | |
Compiling miniz_oxide v0.4.4 | |
Compiling num-traits v0.2.14 | |
Compiling num-integer v0.1.44 | |
Compiling rayon v1.5.1 | |
Compiling num-bigint v0.3.3 | |
Compiling num-rational v0.3.2 | |
Compiling num-iter v0.1.42 | |
Compiling num-bigint v0.4.3 | |
Compiling form_urlencoded v1.0.1 | |
Compiling url-escape v0.1.0 | |
Compiling http v0.2.6 | |
Compiling cranelift-codegen-meta v0.81.1 | |
Compiling itertools v0.10.3 | |
Compiling textwrap v0.11.0 | |
Compiling fxhash v0.2.1 | |
Compiling base64 v0.10.1 | |
Compiling foreign-types v0.3.2 | |
Compiling heck v0.3.3 | |
Compiling wast v35.0.2 | |
Compiling ed25519 v1.4.0 | |
Compiling spin-cli v0.1.0 (/usr/src/spin) | |
Compiling walkdir v2.3.2 | |
error: failed to run custom build command for `spin-cli v0.1.0 (/usr/src/spin)` | |
Caused by: | |
process didn't exit successfully: `/usr/src/spin/target/release/build/spin-cli-591d128a990b5f46/build-script-build` (exit status: 1) | |
--- stderr | |
/usr/src/spin/target/release/build/spin-cli-591d128a990b5f46/build-script-build: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.29' not found (required by /usr/src/spin/target/release/build/spin-cli-591d128a990b5f46/build-script-build) | |
/usr/src/spin/target/release/build/spin-cli-591d128a990b5f46/build-script-build: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found (required by /usr/src/spin/target/release/build/spin-cli-591d128a990b5f46/build-script-build) | |
/usr/src/spin/target/release/build/spin-cli-591d128a990b5f46/build-script-build: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by /usr/src/spin/target/release/build/spin-cli-591d128a990b5f46/build-script-build) | |
/usr/src/spin/target/release/build/spin-cli-591d128a990b5f46/build-script-build: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by /usr/src/spin/target/release/build/spin-cli-591d128a990b5f46/build-script-build) | |
warning: build failed, waiting for other jobs to finish... | |
error: build failed | |
make: *** [Makefile:6: build] Error 101 | |
The command '/bin/sh -c make build' returned a non-zero code: 2 | |
bjk in pop-os in 10.0.1.155 spin on main [?] is 📦 v0.1.0 via 🦀 v1.59.0 took 46s | |
❯ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment