Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

aarch64-unknown-linux-gnu-gcc target not working #28

Open
skilbjo opened this issue Oct 13, 2024 · 3 comments
Open

aarch64-unknown-linux-gnu-gcc target not working #28

skilbjo opened this issue Oct 13, 2024 · 3 comments

Comments

@skilbjo
Copy link

skilbjo commented Oct 13, 2024

.github/workflows/release.yml

  build-rust-cross:
    timeout-minutes: 10
    name: build rust cross - ${{ matrix.platform.release_for }}

    strategy:
      matrix:
        platform:
          ## x86 runner, but uses cross to get arm target
          - release_for: linux-arm
            os: ubuntu-latest
            target: aarch64-unknown-linux-gnu
            name: libcfbypass.so

    runs-on: ${{ matrix.platform.os }}
    steps:
      - name: Checkout
        uses: actions/checkout@v4

      - name: Build binary
        uses: houseabsolute/actions-rust-cross@v0
        with:
          target: ${{ matrix.platform.target }}
          args: "--locked --release"
          strip: true

      - name: Release Binary
        shell: bash
        run: |
          ls target

      - name: Release Binary
        shell: bash
        run: |
          BIN_SUFFIX=""
          if [[ "${{ matrix.runner }}" == "ubuntu-latest" || "${{ matrix.runner }}" == "ubuntu-latest-arm" ]]; then
            BIN_SUFFIX=".so"
          elif [[ "${{ matrix.runner }}" == "macos-latest" ]]; then
            BIN_SUFFIX=".dylib"
          fi

          BIN_OUTPUT="target/${{ matrix.platform.target }}/release/libcfbypass${BIN_SUFFIX}"
          BIN_RELEASE="cfbypass-${{ matrix.simple }}${BIN_SUFFIX}"

          mkdir -p "./dist/${{ matrix.platform.release_for }}"

          mv "${BIN_OUTPUT}" "./dist/${{ matrix.platform.release_for }}/cfbypass${BIN_SUFFIX}"

      - uses: actions/upload-artifact@v4
        with:
          name: ${{ matrix.platform.release_for }}
          path: dist
          if-no-files-found: error

.cargo/config.toml

[build]
target = "aarch64-unknown-linux-gnu"

[target.aarch64-unknown-linux-gnu]
linker = "aarch64-unknown-linux-gnu-gcc"

[target.aarch64-unknown-linux-musl]
linker = "aarch64-unknown-linux-gnu-gcc"

Cargo.toml

[package]
name = "cf-bypass"
version = "0.1.0"
edition = "2021"

[lib]
name = "cfbypass"
path = "rs-src/lib.rs"
crate-type = ["cdylib"]

[dependencies]
errno = "0.3.9"
lazy_static = "1.5.0"
openssl = { version = "0.10.66", features = [ "vendored" ] }
rboring = { version = "4.10.2", features = [] }
rboring-sys = { version = "4.10.2", features = [] }
rquest = "0.22.22"
thiserror = "1.0.63"
tokio = { version = "1.39.2", features = [ "full" ] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"

[profile.release]
strip = true
lto = "thin"
codegen-units = 1
panic = "abort"
debug = false

[build-dependencies]
cargo-zigbuild = "0.19.1"

will provide log output separately

@skilbjo
Copy link
Author

skilbjo commented Oct 13, 2024

log output

2024-10-13T23:09:33.5033693Z ##[group]Run houseabsolute/actions-rust-cross@v0
2024-10-13T23:09:33.5034427Z with:
2024-10-13T23:09:33.5034955Z   target: aarch64-unknown-linux-gnu
2024-10-13T23:09:33.5035708Z   args: --locked --release
2024-10-13T23:09:33.5036246Z   strip: true
2024-10-13T23:09:33.5036743Z   working-directory: .
2024-10-13T23:09:33.5037369Z   command: build
2024-10-13T23:09:33.5037846Z   toolchain: stable
2024-10-13T23:09:33.5038620Z   GITHUB_TOKEN: ***
2024-10-13T23:09:33.5039323Z   cache-cross-binary: true
2024-10-13T23:09:33.5039887Z ##[endgroup]
2024-10-13T23:09:33.5313583Z ##[group]Run echo "/home/runner/work/_actions/houseabsolute/actions-rust-cross/v0" >> $GITHUB_PATH
2024-10-13T23:09:33.5314772Z �[36;1mecho "/home/runner/work/_actions/houseabsolute/actions-rust-cross/v0" >> $GITHUB_PATH�[0m
2024-10-13T23:09:33.5418626Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2024-10-13T23:09:33.5419171Z ##[endgroup]
2024-10-13T23:09:33.5619361Z ##[group]Run set-cross-compile.sh aarch64-unknown-linux-gnu
2024-10-13T23:09:33.5620021Z �[36;1mset-cross-compile.sh aarch64-unknown-linux-gnu�[0m
2024-10-13T23:09:33.5678461Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2024-10-13T23:09:33.5679014Z ##[endgroup]
2024-10-13T23:09:33.5778254Z + set -o pipefail
2024-10-13T23:09:33.5779498Z + TARGET=aarch64-unknown-linux-gnu
2024-10-13T23:09:33.5784019Z + uname -a
2024-10-13T23:09:33.5785049Z + grep --quiet --extended-regexp -i 'darwin|msys|windows'
2024-10-13T23:09:33.5809630Z + echo aarch64-unknown-linux-gnu
2024-10-13T23:09:33.5812187Z + grep --quiet --extended-regexp -i 'x86_64.+linux-(gnu|musl)'
2024-10-13T23:09:33.5854362Z + echo needs-cross=true
2024-10-13T23:09:33.6159064Z ##[group]Run dtolnay/rust-toolchain@master
2024-10-13T23:09:33.6159460Z with:
2024-10-13T23:09:33.6159722Z   targets: aarch64-unknown-linux-gnu
2024-10-13T23:09:33.6160075Z   toolchain: stable
2024-10-13T23:09:33.6160327Z ##[endgroup]
2024-10-13T23:09:33.6193981Z ##[group]Run : parse toolchain version
2024-10-13T23:09:33.6194423Z �[36;1m: parse toolchain version�[0m
2024-10-13T23:09:33.6194932Z �[36;1mif [[ $toolchain =~ ^stable' '[0-9]+' '(year|month|week|day)s?' 'ago$ ]]; then�[0m
2024-10-13T23:09:33.6195488Z �[36;1m  if [[ Linux == macOS ]]; then�[0m
2024-10-13T23:09:33.6196230Z �[36;1m    echo "toolchain=1.$((($(date -v-$(sed 's/stable \([0-9]*\) \(.\).*/\1\2/' <<< $toolchain) +%s)/60/60/24-16569)/7/6))" >> $GITHUB_OUTPUT�[0m
2024-10-13T23:09:33.6196889Z �[36;1m  else�[0m
2024-10-13T23:09:33.6197382Z �[36;1m    echo "toolchain=1.$((($(date --date "${toolchain#stable }" +%s)/60/60/24-16569)/7/6))" >> $GITHUB_OUTPUT�[0m
2024-10-13T23:09:33.6197937Z �[36;1m  fi�[0m
2024-10-13T23:09:33.6198309Z �[36;1melif [[ $toolchain =~ ^stable' 'minus' '[0-9]+' 'releases?$ ]]; then�[0m
2024-10-13T23:09:33.6199007Z �[36;1m  echo "toolchain=1.$((($(date +%s)/60/60/24-16569)/7/6-${toolchain//[^0-9]/}))" >> $GITHUB_OUTPUT�[0m
2024-10-13T23:09:33.6199536Z �[36;1melse�[0m
2024-10-13T23:09:33.6199859Z �[36;1m  echo "toolchain=$toolchain" >> $GITHUB_OUTPUT�[0m
2024-10-13T23:09:33.6200230Z �[36;1mfi�[0m
2024-10-13T23:09:33.6258554Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2024-10-13T23:09:33.6259037Z env:
2024-10-13T23:09:33.6259265Z   toolchain: stable
2024-10-13T23:09:33.6259523Z ##[endgroup]
2024-10-13T23:09:33.6393159Z ##[group]Run : construct rustup command line
2024-10-13T23:09:33.6393570Z �[36;1m: construct rustup command line�[0m
2024-10-13T23:09:33.6394144Z �[36;1mecho "targets=$(for t in ${targets//,/ }; do echo -n ' --target' $t; done)" >> $GITHUB_OUTPUT�[0m
2024-10-13T23:09:33.6394942Z �[36;1mecho "components=$(for c in ${components//,/ }; do echo -n ' --component' $c; done)" >> $GITHUB_OUTPUT�[0m
2024-10-13T23:09:33.6395557Z �[36;1mecho "downgrade=" >> $GITHUB_OUTPUT�[0m
2024-10-13T23:09:33.6451209Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2024-10-13T23:09:33.6451640Z env:
2024-10-13T23:09:33.6451920Z   targets: aarch64-unknown-linux-gnu
2024-10-13T23:09:33.6452264Z   components: 
2024-10-13T23:09:33.6453035Z ##[endgroup]
2024-10-13T23:09:33.6568273Z ##[group]Run : set $CARGO_HOME
2024-10-13T23:09:33.6568602Z �[36;1m: set $CARGO_HOME�[0m
2024-10-13T23:09:33.6568998Z �[36;1mecho CARGO_HOME=${CARGO_HOME:-$HOME/.cargo} >> $GITHUB_ENV�[0m
2024-10-13T23:09:33.6628449Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2024-10-13T23:09:33.6628872Z ##[endgroup]
2024-10-13T23:09:33.6745547Z ##[group]Run : install rustup if needed
2024-10-13T23:09:33.6745943Z �[36;1m: install rustup if needed�[0m
2024-10-13T23:09:33.6746316Z �[36;1mif ! command -v rustup &>/dev/null; then�[0m
2024-10-13T23:09:33.6747241Z �[36;1m  curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused --location --silent --show-error --fail "https://sh.rustup.rs" | sh -s -- --default-toolchain none -y�[0m
2024-10-13T23:09:33.6748128Z �[36;1m  echo "$CARGO_HOME/bin" >> $GITHUB_PATH�[0m
2024-10-13T23:09:33.6748479Z �[36;1mfi�[0m
2024-10-13T23:09:33.6803483Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2024-10-13T23:09:33.6803954Z env:
2024-10-13T23:09:33.6804178Z   CARGO_HOME: /home/runner/.cargo
2024-10-13T23:09:33.6804475Z ##[endgroup]
2024-10-13T23:09:33.6916441Z ##[group]Run rustup toolchain install stable --target aarch64-unknown-linux-gnu --profile minimal --no-self-update
2024-10-13T23:09:33.6917591Z �[36;1mrustup toolchain install stable --target aarch64-unknown-linux-gnu --profile minimal --no-self-update�[0m
2024-10-13T23:09:33.6984442Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2024-10-13T23:09:33.6985291Z env:
2024-10-13T23:09:33.6985783Z   CARGO_HOME: /home/runner/.cargo
2024-10-13T23:09:33.6986347Z ##[endgroup]
2024-10-13T23:09:33.9113391Z info: syncing channel updates for 'stable-x86_64-unknown-linux-gnu'
2024-10-13T23:09:33.9871110Z info: latest update on 2024-09-05, rust version 1.81.0 (eeb90cda1 2024-09-04)
2024-10-13T23:09:34.0114940Z info: downloading component 'rust-std' for 'aarch64-unknown-linux-gnu'
2024-10-13T23:09:34.2015336Z info: installing component 'rust-std' for 'aarch64-unknown-linux-gnu'
2024-10-13T23:09:36.3862512Z 
2024-10-13T23:09:36.3984326Z   stable-x86_64-unknown-linux-gnu updated - rustc 1.81.0 (eeb90cda1 2024-09-04) (from rustc 1.81.0 (eeb90cda1 2024-09-04))
2024-10-13T23:09:36.3985419Z 
2024-10-13T23:09:36.4040721Z ##[group]Run rustup default stable
2024-10-13T23:09:36.4041312Z �[36;1mrustup default stable�[0m
2024-10-13T23:09:36.4100973Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2024-10-13T23:09:36.4101393Z env:
2024-10-13T23:09:36.4101630Z   CARGO_HOME: /home/runner/.cargo
2024-10-13T23:09:36.4101938Z ##[endgroup]
2024-10-13T23:09:36.4216565Z info: using existing install for 'stable-x86_64-unknown-linux-gnu'
2024-10-13T23:09:36.4224330Z info: default toolchain set to 'stable-x86_64-unknown-linux-gnu'
2024-10-13T23:09:36.4225051Z 
2024-10-13T23:09:36.4339879Z   stable-x86_64-unknown-linux-gnu unchanged - rustc 1.81.0 (eeb90cda1 2024-09-04)
2024-10-13T23:09:36.4340939Z 
2024-10-13T23:09:36.4372272Z ##[group]Run : create cachekey
2024-10-13T23:09:36.4372945Z �[36;1m: create cachekey�[0m
2024-10-13T23:09:36.4373731Z �[36;1mDATE=$(rustc +stable --version --verbose | sed -ne 's/^commit-date: \(20[0-9][0-9]\)-\([01][0-9]\)-\([0-3][0-9]\)$/\1\2\3/p')�[0m
2024-10-13T23:09:36.4374548Z �[36;1mHASH=$(rustc +stable --version --verbose | sed -ne 's/^commit-hash: //p')�[0m
2024-10-13T23:09:36.4375167Z �[36;1mecho "cachekey=$(echo $DATE$HASH | head -c12)" >> $GITHUB_OUTPUT�[0m
2024-10-13T23:09:36.4432604Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2024-10-13T23:09:36.4433011Z env:
2024-10-13T23:09:36.4433232Z   CARGO_HOME: /home/runner/.cargo
2024-10-13T23:09:36.4433531Z ##[endgroup]
2024-10-13T23:09:36.5180009Z ##[group]Run : disable incremental compilation
2024-10-13T23:09:36.5180426Z �[36;1m: disable incremental compilation�[0m
2024-10-13T23:09:36.5180827Z �[36;1mif [ -z "${CARGO_INCREMENTAL+set}" ]; then�[0m
2024-10-13T23:09:36.5181245Z �[36;1m  echo CARGO_INCREMENTAL=0 >> $GITHUB_ENV�[0m
2024-10-13T23:09:36.5181606Z �[36;1mfi�[0m
2024-10-13T23:09:36.5243957Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2024-10-13T23:09:36.5244406Z env:
2024-10-13T23:09:36.5244656Z   CARGO_HOME: /home/runner/.cargo
2024-10-13T23:09:36.5244964Z ##[endgroup]
2024-10-13T23:09:36.5366209Z ##[group]Run : enable colors in Cargo output
2024-10-13T23:09:36.5366943Z �[36;1m: enable colors in Cargo output�[0m
2024-10-13T23:09:36.5367663Z �[36;1mif [ -z "${CARGO_TERM_COLOR+set}" ]; then�[0m
2024-10-13T23:09:36.5368442Z �[36;1m  echo CARGO_TERM_COLOR=always >> $GITHUB_ENV�[0m
2024-10-13T23:09:36.5369082Z �[36;1mfi�[0m
2024-10-13T23:09:36.5435273Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2024-10-13T23:09:36.5435696Z env:
2024-10-13T23:09:36.5435919Z   CARGO_HOME: /home/runner/.cargo
2024-10-13T23:09:36.5436250Z   CARGO_INCREMENTAL: 0
2024-10-13T23:09:36.5436556Z ##[endgroup]
2024-10-13T23:09:36.5556292Z ##[group]Run : enable Cargo sparse registry
2024-10-13T23:09:36.5556760Z �[36;1m: enable Cargo sparse registry�[0m
2024-10-13T23:09:36.5557538Z �[36;1m# implemented in 1.66, stabilized in 1.68, made default in 1.70�[0m
2024-10-13T23:09:36.5558412Z �[36;1mif [ -z "${CARGO_REGISTRIES_CRATES_IO_PROTOCOL+set}" -o -f "/home/runner/work/_temp"/.implicit_cargo_registries_crates_io_protocol ]; then�[0m
2024-10-13T23:09:36.5559392Z �[36;1m  if rustc +stable --version --verbose | grep -q '^release: 1\.6[89]\.'; then�[0m
2024-10-13T23:09:36.5560114Z �[36;1m    touch "/home/runner/work/_temp"/.implicit_cargo_registries_crates_io_protocol || true�[0m
2024-10-13T23:09:36.5560797Z �[36;1m    echo CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse >> $GITHUB_ENV�[0m
2024-10-13T23:09:36.5561540Z �[36;1m  elif rustc +stable --version --verbose | grep -q '^release: 1\.6[67]\.'; then�[0m
2024-10-13T23:09:36.5562278Z �[36;1m    touch "/home/runner/work/_temp"/.implicit_cargo_registries_crates_io_protocol || true�[0m
2024-10-13T23:09:36.5562940Z �[36;1m    echo CARGO_REGISTRIES_CRATES_IO_PROTOCOL=git >> $GITHUB_ENV�[0m
2024-10-13T23:09:36.5563379Z �[36;1m  fi�[0m
2024-10-13T23:09:36.5563603Z �[36;1mfi�[0m
2024-10-13T23:09:36.5615322Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2024-10-13T23:09:36.5615731Z env:
2024-10-13T23:09:36.5615948Z   CARGO_HOME: /home/runner/.cargo
2024-10-13T23:09:36.5616267Z   CARGO_INCREMENTAL: 0
2024-10-13T23:09:36.5616531Z   CARGO_TERM_COLOR: always
2024-10-13T23:09:36.5616797Z ##[endgroup]
2024-10-13T23:09:36.6024812Z ##[group]Run : work around spurious network errors in curl 8.0
2024-10-13T23:09:36.6025347Z �[36;1m: work around spurious network errors in curl 8.0�[0m
2024-10-13T23:09:36.6026045Z �[36;1m# https://rust-lang.zulipchat.com/#narrow/stream/246057-t-cargo/topic/timeout.20investigation�[0m
2024-10-13T23:09:36.6026829Z �[36;1mif rustc +stable --version --verbose | grep -q '^release: 1\.7[01]\.'; then�[0m
2024-10-13T23:09:36.6027404Z �[36;1m  echo CARGO_HTTP_MULTIPLEXING=false >> $GITHUB_ENV�[0m
2024-10-13T23:09:36.6027793Z �[36;1mfi�[0m
2024-10-13T23:09:36.6085420Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2024-10-13T23:09:36.6085905Z env:
2024-10-13T23:09:36.6086185Z   CARGO_HOME: /home/runner/.cargo
2024-10-13T23:09:36.6086496Z   CARGO_INCREMENTAL: 0
2024-10-13T23:09:36.6086764Z   CARGO_TERM_COLOR: always
2024-10-13T23:09:36.6087025Z ##[endgroup]
2024-10-13T23:09:36.6340662Z ##[group]Run rustc +stable --version --verbose
2024-10-13T23:09:36.6341063Z �[36;1mrustc +stable --version --verbose�[0m
2024-10-13T23:09:36.6398963Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2024-10-13T23:09:36.6399375Z env:
2024-10-13T23:09:36.6399591Z   CARGO_HOME: /home/runner/.cargo
2024-10-13T23:09:36.6399899Z   CARGO_INCREMENTAL: 0
2024-10-13T23:09:36.6400233Z   CARGO_TERM_COLOR: always
2024-10-13T23:09:36.6400502Z ##[endgroup]
2024-10-13T23:09:36.6634042Z rustc 1.81.0 (eeb90cda1 2024-09-04)
2024-10-13T23:09:36.6634661Z binary: rustc
2024-10-13T23:09:36.6635280Z commit-hash: eeb90cda1969383f56a2637cbd3037bdf598841c
2024-10-13T23:09:36.6635985Z commit-date: 2024-09-04
2024-10-13T23:09:36.6637117Z host: x86_64-unknown-linux-gnu
2024-10-13T23:09:36.6637881Z release: 1.81.0
2024-10-13T23:09:36.6638269Z LLVM version: 18.1.7
2024-10-13T23:09:36.6718507Z ##[group]Run determine-cross-version.sh ""
2024-10-13T23:09:36.6718960Z �[36;1mdetermine-cross-version.sh ""�[0m
2024-10-13T23:09:36.6776458Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2024-10-13T23:09:36.6776865Z env:
2024-10-13T23:09:36.6777085Z   CARGO_HOME: /home/runner/.cargo
2024-10-13T23:09:36.6777390Z   CARGO_INCREMENTAL: 0
2024-10-13T23:09:36.6777668Z   CARGO_TERM_COLOR: always
2024-10-13T23:09:36.6778569Z   GITHUB_TOKEN: ***
2024-10-13T23:09:36.6778838Z ##[endgroup]
2024-10-13T23:09:36.6872216Z + set -o pipefail
2024-10-13T23:09:36.6872648Z + VERSION=
2024-10-13T23:09:36.6873951Z + '[' -z '' ']'
2024-10-13T23:09:36.6880179Z ++ curl --request GET --header 'Authorization: ***' https://api.github.com/repos/cross-rs/cross/releases/latest
2024-10-13T23:09:36.6968354Z   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
2024-10-13T23:09:36.6971723Z                                  Dload  Upload   Total   Spent    Left  Speed
2024-10-13T23:09:36.6974354Z 
2024-10-13T23:09:36.9001743Z   0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
2024-10-13T23:09:36.9495373Z   0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
2024-10-13T23:09:36.9503803Z 100 10027  100 10027    0     0  39554      0 --:--:-- --:--:-- --:--:-- 39476
2024-10-13T23:09:36.9534051Z + JSON='{
2024-10-13T23:09:36.9535542Z   "url": "https://api.github.com/repos/cross-rs/cross/releases/91358284",
2024-10-13T23:09:36.9537058Z   "assets_url": "https://api.github.com/repos/cross-rs/cross/releases/91358284/assets",
2024-10-13T23:09:36.9539100Z   "upload_url": "https://uploads.github.com/repos/cross-rs/cross/releases/91358284/assets{?name,label}",
2024-10-13T23:09:36.9540415Z   "html_url": "https://github.com/cross-rs/cross/releases/tag/v0.2.5",
2024-10-13T23:09:36.9541147Z   "id": 91358284,
2024-10-13T23:09:36.9541537Z   "author": {
2024-10-13T23:09:36.9542002Z     "login": "github-actions[bot]",
2024-10-13T23:09:36.9542487Z     "id": 41898282,
2024-10-13T23:09:36.9542907Z     "node_id": "MDM6Qm90NDE4OTgyODI=",
2024-10-13T23:09:36.9543648Z     "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
2024-10-13T23:09:36.9544391Z     "gravatar_id": "",
2024-10-13T23:09:36.9545082Z     "url": "https://api.github.com/users/github-actions%5Bbot%5D",
2024-10-13T23:09:36.9545985Z     "html_url": "https://github.com/apps/github-actions",
2024-10-13T23:09:36.9547085Z     "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
2024-10-13T23:09:36.9548568Z     "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
2024-10-13T23:09:36.9550063Z     "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
2024-10-13T23:09:36.9551453Z     "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
2024-10-13T23:09:36.9552910Z     "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
2024-10-13T23:09:36.9554215Z     "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
2024-10-13T23:09:36.9555376Z     "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
2024-10-13T23:09:36.9556606Z     "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
2024-10-13T23:09:36.9558595Z     "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
2024-10-13T23:09:36.9559898Z     "type": "Bot",
2024-10-13T23:09:36.9560325Z     "site_admin": false
2024-10-13T23:09:36.9560925Z   },
2024-10-13T23:09:36.9561274Z   "node_id": "RE_kwDOBJwXpM4FcgRM",
2024-10-13T23:09:36.9561928Z   "tag_name": "v0.2.5",
2024-10-13T23:09:36.9562529Z   "target_commitish": "main",
2024-10-13T23:09:36.9563171Z   "name": "v0.2.5",
2024-10-13T23:09:36.9563569Z   "draft": false,
2024-10-13T23:09:36.9564443Z   "prerelease": false,
2024-10-13T23:09:36.9565167Z   "created_at": "2023-02-04T14:58:11Z",
2024-10-13T23:09:36.9565939Z   "published_at": "2023-02-04T17:27:40Z",
2024-10-13T23:09:36.9566595Z   "assets": [
2024-10-13T23:09:36.9566926Z     {
2024-10-13T23:09:36.9567947Z       "url": "https://api.github.com/repos/cross-rs/cross/releases/assets/94307578",
2024-10-13T23:09:36.9568939Z       "id": 94307578,
2024-10-13T23:09:36.9569537Z       "node_id": "RA_kwDOBJwXpM4FnwT6",
2024-10-13T23:09:36.9570472Z       "name": "cross-x86_64-apple-darwin.tar.gz",
2024-10-13T23:09:36.9571249Z       "label": "",
2024-10-13T23:09:36.9571632Z       "uploader": {
2024-10-13T23:09:36.9572278Z         "login": "github-actions[bot]",
2024-10-13T23:09:36.9573060Z         "id": 41898282,
2024-10-13T23:09:36.9573649Z         "node_id": "MDM6Qm90NDE4OTgyODI=",
2024-10-13T23:09:36.9574556Z         "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
2024-10-13T23:09:36.9575930Z         "gravatar_id": "",
2024-10-13T23:09:36.9576911Z         "url": "https://api.github.com/users/github-actions%5Bbot%5D",
2024-10-13T23:09:36.9578352Z         "html_url": "https://github.com/apps/github-actions",
2024-10-13T23:09:36.9579717Z         "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
2024-10-13T23:09:36.9581539Z         "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
2024-10-13T23:09:36.9583256Z         "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
2024-10-13T23:09:36.9584900Z         "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
2024-10-13T23:09:36.9586609Z         "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
2024-10-13T23:09:36.9588202Z         "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
2024-10-13T23:09:36.9589705Z         "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
2024-10-13T23:09:36.9591270Z         "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
2024-10-13T23:09:36.9592961Z         "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
2024-10-13T23:09:36.9594278Z         "type": "Bot",
2024-10-13T23:09:36.9594717Z         "site_admin": false
2024-10-13T23:09:36.9595265Z       },
2024-10-13T23:09:36.9595644Z       "content_type": "application/gzip",
2024-10-13T23:09:36.9596310Z       "state": "uploaded",
2024-10-13T23:09:36.9596860Z       "size": 1802288,
2024-10-13T23:09:36.9597445Z       "download_count": 42402,
2024-10-13T23:09:36.9598052Z       "created_at": "2023-02-04T17:27:41Z",
2024-10-13T23:09:36.9598834Z       "updated_at": "2023-02-04T17:27:41Z",
2024-10-13T23:09:36.9600287Z       "browser_download_url": "https://github.com/cross-rs/cross/releases/download/v0.2.5/cross-x86_64-apple-darwin.tar.gz"
2024-10-13T23:09:36.9601419Z     },
2024-10-13T23:09:36.9601753Z     {
2024-10-13T23:09:36.9602850Z       "url": "https://api.github.com/repos/cross-rs/cross/releases/assets/94307577",
2024-10-13T23:09:36.9603696Z       "id": 94307577,
2024-10-13T23:09:36.9604136Z       "node_id": "RA_kwDOBJwXpM4FnwT5",
2024-10-13T23:09:36.9604849Z       "name": "cross-x86_64-pc-windows-msvc.tar.gz",
2024-10-13T23:09:36.9605476Z       "label": "",
2024-10-13T23:09:36.9606071Z       "uploader": {
2024-10-13T23:09:36.9606589Z         "login": "github-actions[bot]",
2024-10-13T23:09:36.9607102Z         "id": 41898282,
2024-10-13T23:09:36.9607552Z         "node_id": "MDM6Qm90NDE4OTgyODI=",
2024-10-13T23:09:36.9608316Z         "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
2024-10-13T23:09:36.9609074Z         "gravatar_id": "",
2024-10-13T23:09:36.9609815Z         "url": "https://api.github.com/users/github-actions%5Bbot%5D",
2024-10-13T23:09:36.9610739Z         "html_url": "https://github.com/apps/github-actions",
2024-10-13T23:09:36.9612090Z         "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
2024-10-13T23:09:36.9613884Z         "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
2024-10-13T23:09:36.9615295Z         "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
2024-10-13T23:09:36.9616702Z         "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
2024-10-13T23:09:36.9618185Z         "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
2024-10-13T23:09:36.9619527Z         "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
2024-10-13T23:09:36.9620771Z         "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
2024-10-13T23:09:36.9622041Z         "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
2024-10-13T23:09:36.9623467Z         "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
2024-10-13T23:09:36.9624694Z         "type": "Bot",
2024-10-13T23:09:36.9625125Z         "site_admin": false
2024-10-13T23:09:36.9625564Z       },
2024-10-13T23:09:36.9625949Z       "content_type": "application/gzip",
2024-10-13T23:09:36.9629774Z       "state": "uploaded",
2024-10-13T23:09:36.9630249Z       "size": 1462893,
2024-10-13T23:09:36.9630675Z       "download_count": 32089,
2024-10-13T23:09:36.9631315Z       "created_at": "2023-02-04T17:27:41Z",
2024-10-13T23:09:36.9631970Z       "updated_at": "2023-02-04T17:27:41Z",
2024-10-13T23:09:36.9633321Z       "browser_download_url": "https://github.com/cross-rs/cross/releases/download/v0.2.5/cross-x86_64-pc-windows-msvc.tar.gz"
2024-10-13T23:09:36.9634473Z     },
2024-10-13T23:09:36.9634792Z     {
2024-10-13T23:09:36.9635555Z       "url": "https://api.github.com/repos/cross-rs/cross/releases/assets/94307579",
2024-10-13T23:09:36.9636394Z       "id": 94307579,
2024-10-13T23:09:36.9636865Z       "node_id": "RA_kwDOBJwXpM4FnwT7",
2024-10-13T23:09:36.9637604Z       "name": "cross-x86_64-unknown-linux-gnu.tar.gz",
2024-10-13T23:09:36.9638226Z       "label": "",
2024-10-13T23:09:36.9638608Z       "uploader": {
2024-10-13T23:09:36.9639105Z         "login": "github-actions[bot]",
2024-10-13T23:09:36.9639635Z         "id": 41898282,
2024-10-13T23:09:36.9640087Z         "node_id": "MDM6Qm90NDE4OTgyODI=",
2024-10-13T23:09:36.9640860Z         "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
2024-10-13T23:09:36.9641632Z         "gravatar_id": "",
2024-10-13T23:09:36.9642356Z         "url": "https://api.github.com/users/github-actions%5Bbot%5D",
2024-10-13T23:09:36.9643274Z         "html_url": "https://github.com/apps/github-actions",
2024-10-13T23:09:36.9644362Z         "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
2024-10-13T23:09:36.9645772Z         "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
2024-10-13T23:09:36.9647185Z         "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
2024-10-13T23:09:36.9648594Z         "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
2024-10-13T23:09:36.9650100Z         "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
2024-10-13T23:09:36.9651458Z         "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
2024-10-13T23:09:36.9653046Z         "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
2024-10-13T23:09:36.9654354Z         "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
2024-10-13T23:09:36.9655791Z         "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
2024-10-13T23:09:36.9656845Z         "type": "Bot",
2024-10-13T23:09:36.9657366Z         "site_admin": false
2024-10-13T23:09:36.9657820Z       },
2024-10-13T23:09:36.9658476Z       "content_type": "application/gzip",
2024-10-13T23:09:36.9659087Z       "state": "uploaded",
2024-10-13T23:09:36.9659538Z       "size": 2693133,
2024-10-13T23:09:36.9659954Z       "download_count": 99563,
2024-10-13T23:09:36.9660529Z       "created_at": "2023-02-04T17:27:41Z",
2024-10-13T23:09:36.9661172Z       "updated_at": "2023-02-04T17:27:41Z",
2024-10-13T23:09:36.9662549Z       "browser_download_url": "https://github.com/cross-rs/cross/releases/download/v0.2.5/cross-x86_64-unknown-linux-gnu.tar.gz"
2024-10-13T23:09:36.9663723Z     },
2024-10-13T23:09:36.9664039Z     {
2024-10-13T23:09:36.9664788Z       "url": "https://api.github.com/repos/cross-rs/cross/releases/assets/94307576",
2024-10-13T23:09:36.9665621Z       "id": 94307576,
2024-10-13T23:09:36.9666053Z       "node_id": "RA_kwDOBJwXpM4FnwT4",
2024-10-13T23:09:36.9666783Z       "name": "cross-x86_64-unknown-linux-musl.tar.gz",
2024-10-13T23:09:36.9667387Z       "label": "",
2024-10-13T23:09:36.9667979Z       "uploader": {
2024-10-13T23:09:36.9668480Z         "login": "github-actions[bot]",
2024-10-13T23:09:36.9668996Z         "id": 41898282,
2024-10-13T23:09:36.9669438Z         "node_id": "MDM6Qm90NDE4OTgyODI=",
2024-10-13T23:09:36.9670220Z         "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
2024-10-13T23:09:36.9670985Z         "gravatar_id": "",
2024-10-13T23:09:36.9671710Z         "url": "https://api.github.com/users/github-actions%5Bbot%5D",
2024-10-13T23:09:36.9672647Z         "html_url": "https://github.com/apps/github-actions",
2024-10-13T23:09:36.9673731Z         "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
2024-10-13T23:09:36.9675147Z         "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
2024-10-13T23:09:36.9676571Z         "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
2024-10-13T23:09:36.9677974Z         "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
2024-10-13T23:09:36.9679435Z         "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
2024-10-13T23:09:36.9680794Z         "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
2024-10-13T23:09:36.9682039Z         "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
2024-10-13T23:09:36.9683319Z         "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
2024-10-13T23:09:36.9684743Z         "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
2024-10-13T23:09:36.9685686Z         "type": "Bot",
2024-10-13T23:09:36.9686104Z         "site_admin": false
2024-10-13T23:09:36.9686526Z       },
2024-10-13T23:09:36.9686905Z       "content_type": "application/gzip",
2024-10-13T23:09:36.9687446Z       "state": "uploaded",
2024-10-13T23:09:36.9687868Z       "size": 2870100,
2024-10-13T23:09:36.9688284Z       "download_count": 640995,
2024-10-13T23:09:36.9688876Z       "created_at": "2023-02-04T17:27:41Z",
2024-10-13T23:09:36.9689505Z       "updated_at": "2023-02-04T17:27:41Z",
2024-10-13T23:09:36.9690859Z       "browser_download_url": "https://github.com/cross-rs/cross/releases/download/v0.2.5/cross-x86_64-unknown-linux-musl.tar.gz"
2024-10-13T23:09:36.9692025Z     }
2024-10-13T23:09:36.9692332Z   ],
2024-10-13T23:09:36.9694147Z   "tarball_url": "https://api.github.com/repos/cross-rs/cross/tarball/v0.2.5",
2024-10-13T23:09:36.9695366Z   "zipball_url": "https://api.github.com/repos/cross-rs/cross/zipball/v0.2.5",
2024-10-13T23:09:36.9699128Z   "body": "## What'\''s Changed\r\n\r\n### Fixed\r\n\r\n#962 - fix SELinux labels to allow use in multiple containers and/or the host filesystem.\r\n#1166 - freebsd: include memstat in build image to fix build with libc 0.2.138 and up.\r\n#1183 - resolve issue when using pre-build in Cargo.toml\r\n\r\n\r\n**Full Changelog**: https://github.com/cross-rs/cross/compare/v0.2.4...v0.2.5",
2024-10-13T23:09:36.9702155Z   "reactions": {
2024-10-13T23:09:36.9703199Z     "url": "https://api.github.com/repos/cross-rs/cross/releases/91358284/reactions",
2024-10-13T23:09:36.9704063Z     "total_count": 17,
2024-10-13T23:09:36.9704718Z     "+1": 3,
2024-10-13T23:09:36.9705110Z     "-1": 0,
2024-10-13T23:09:36.9705629Z     "laugh": 0,
2024-10-13T23:09:36.9706009Z     "hooray": 14,
2024-10-13T23:09:36.9706384Z     "confused": 0,
2024-10-13T23:09:36.9706755Z     "heart": 0,
2024-10-13T23:09:36.9707173Z     "rocket": 0,
2024-10-13T23:09:36.9707523Z     "eyes": 0
2024-10-13T23:09:36.9707867Z   }
2024-10-13T23:09:36.9708186Z }'
2024-10-13T23:09:36.9708726Z ++ jq -r .tag_name
2024-10-13T23:09:36.9709118Z ++ echo '{
2024-10-13T23:09:36.9709819Z   "url": "https://api.github.com/repos/cross-rs/cross/releases/91358284",
2024-10-13T23:09:36.9711040Z   "assets_url": "https://api.github.com/repos/cross-rs/cross/releases/91358284/assets",
2024-10-13T23:09:36.9712532Z   "upload_url": "https://uploads.github.com/repos/cross-rs/cross/releases/91358284/assets{?name,label}",
2024-10-13T23:09:36.9714071Z   "html_url": "https://github.com/cross-rs/cross/releases/tag/v0.2.5",
2024-10-13T23:09:36.9714811Z   "id": 91358284,
2024-10-13T23:09:36.9715192Z   "author": {
2024-10-13T23:09:36.9715663Z     "login": "github-actions[bot]",
2024-10-13T23:09:36.9716152Z     "id": 41898282,
2024-10-13T23:09:36.9716570Z     "node_id": "MDM6Qm90NDE4OTgyODI=",
2024-10-13T23:09:36.9717324Z     "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
2024-10-13T23:09:36.9718087Z     "gravatar_id": "",
2024-10-13T23:09:36.9718774Z     "url": "https://api.github.com/users/github-actions%5Bbot%5D",
2024-10-13T23:09:36.9719676Z     "html_url": "https://github.com/apps/github-actions",
2024-10-13T23:09:36.9720750Z     "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
2024-10-13T23:09:36.9722154Z     "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
2024-10-13T23:09:36.9723565Z     "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
2024-10-13T23:09:36.9724972Z     "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
2024-10-13T23:09:36.9726422Z     "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
2024-10-13T23:09:36.9727765Z     "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
2024-10-13T23:09:36.9728969Z     "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
2024-10-13T23:09:36.9730226Z     "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
2024-10-13T23:09:36.9731634Z     "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
2024-10-13T23:09:36.9732802Z     "type": "Bot",
2024-10-13T23:09:36.9733203Z     "site_admin": false
2024-10-13T23:09:36.9733592Z   },
2024-10-13T23:09:36.9733946Z   "node_id": "RE_kwDOBJwXpM4FcgRM",
2024-10-13T23:09:36.9734467Z   "tag_name": "v0.2.5",
2024-10-13T23:09:36.9734911Z   "target_commitish": "main",
2024-10-13T23:09:36.9735357Z   "name": "v0.2.5",
2024-10-13T23:09:36.9735738Z   "draft": false,
2024-10-13T23:09:36.9736120Z   "prerelease": false,
2024-10-13T23:09:36.9736642Z   "created_at": "2023-02-04T14:58:11Z",
2024-10-13T23:09:36.9737260Z   "published_at": "2023-02-04T17:27:40Z",
2024-10-13T23:09:36.9737780Z   "assets": [
2024-10-13T23:09:36.9738120Z     {
2024-10-13T23:09:36.9738870Z       "url": "https://api.github.com/repos/cross-rs/cross/releases/assets/94307578",
2024-10-13T23:09:36.9739690Z       "id": 94307578,
2024-10-13T23:09:36.9740124Z       "node_id": "RA_kwDOBJwXpM4FnwT6",
2024-10-13T23:09:36.9740814Z       "name": "cross-x86_64-apple-darwin.tar.gz",
2024-10-13T23:09:36.9741391Z       "label": "",
2024-10-13T23:09:36.9741771Z       "uploader": {
2024-10-13T23:09:36.9742257Z         "login": "github-actions[bot]",
2024-10-13T23:09:36.9742770Z         "id": 41898282,
2024-10-13T23:09:36.9743228Z         "node_id": "MDM6Qm90NDE4OTgyODI=",
2024-10-13T23:09:36.9744236Z         "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
2024-10-13T23:09:36.9745019Z         "gravatar_id": "",
2024-10-13T23:09:36.9745759Z         "url": "https://api.github.com/users/github-actions%5Bbot%5D",
2024-10-13T23:09:36.9746697Z         "html_url": "https://github.com/apps/github-actions",
2024-10-13T23:09:36.9747795Z         "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
2024-10-13T23:09:36.9749219Z         "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
2024-10-13T23:09:36.9750672Z         "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
2024-10-13T23:09:36.9752086Z         "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
2024-10-13T23:09:36.9753545Z         "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
2024-10-13T23:09:36.9755523Z         "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
2024-10-13T23:09:36.9756769Z         "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
2024-10-13T23:09:36.9758042Z         "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
2024-10-13T23:09:36.9759469Z         "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
2024-10-13T23:09:36.9760410Z         "type": "Bot",
2024-10-13T23:09:36.9760818Z         "site_admin": false
2024-10-13T23:09:36.9761244Z       },
2024-10-13T23:09:36.9761625Z       "content_type": "application/gzip",
2024-10-13T23:09:36.9762168Z       "state": "uploaded",
2024-10-13T23:09:36.9762598Z       "size": 1802288,
2024-10-13T23:09:36.9763019Z       "download_count": 42402,
2024-10-13T23:09:36.9763583Z       "created_at": "2023-02-04T17:27:41Z",
2024-10-13T23:09:36.9764219Z       "updated_at": "2023-02-04T17:27:41Z",
2024-10-13T23:09:36.9765532Z       "browser_download_url": "https://github.com/cross-rs/cross/releases/download/v0.2.5/cross-x86_64-apple-darwin.tar.gz"
2024-10-13T23:09:36.9766638Z     },
2024-10-13T23:09:36.9766949Z     {
2024-10-13T23:09:36.9767689Z       "url": "https://api.github.com/repos/cross-rs/cross/releases/assets/94307577",
2024-10-13T23:09:36.9768526Z       "id": 94307577,
2024-10-13T23:09:36.9768970Z       "node_id": "RA_kwDOBJwXpM4FnwT5",
2024-10-13T23:09:36.9769665Z       "name": "cross-x86_64-pc-windows-msvc.tar.gz",
2024-10-13T23:09:36.9770255Z       "label": "",
2024-10-13T23:09:36.9770636Z       "uploader": {
2024-10-13T23:09:36.9771122Z         "login": "github-actions[bot]",
2024-10-13T23:09:36.9771642Z         "id": 41898282,
2024-10-13T23:09:36.9772099Z         "node_id": "MDM6Qm90NDE4OTgyODI=",
2024-10-13T23:09:36.9773206Z         "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
2024-10-13T23:09:36.9773984Z         "gravatar_id": "",
2024-10-13T23:09:36.9774821Z         "url": "https://api.github.com/users/github-actions%5Bbot%5D",
2024-10-13T23:09:36.9775752Z         "html_url": "https://github.com/apps/github-actions",
2024-10-13T23:09:36.9776851Z         "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
2024-10-13T23:09:36.9778271Z         "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
2024-10-13T23:09:36.9779690Z         "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
2024-10-13T23:09:36.9781110Z         "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
2024-10-13T23:09:36.9782582Z         "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
2024-10-13T23:09:36.9783937Z         "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
2024-10-13T23:09:36.9785164Z         "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
2024-10-13T23:09:36.9786638Z         "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
2024-10-13T23:09:36.9788068Z         "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
2024-10-13T23:09:36.9789018Z         "type": "Bot",
2024-10-13T23:09:36.9789433Z         "site_admin": false
2024-10-13T23:09:36.9789852Z       },
2024-10-13T23:09:36.9790245Z       "content_type": "application/gzip",
2024-10-13T23:09:36.9790802Z       "state": "uploaded",
2024-10-13T23:09:36.9791259Z       "size": 1462893,
2024-10-13T23:09:36.9791728Z       "download_count": 32089,
2024-10-13T23:09:36.9792291Z       "created_at": "2023-02-04T17:27:41Z",
2024-10-13T23:09:36.9792940Z       "updated_at": "2023-02-04T17:27:41Z",
2024-10-13T23:09:36.9794278Z       "browser_download_url": "https://github.com/cross-rs/cross/releases/download/v0.2.5/cross-x86_64-pc-windows-msvc.tar.gz"
2024-10-13T23:09:36.9795434Z     },
2024-10-13T23:09:36.9795946Z     {
2024-10-13T23:09:36.9796699Z       "url": "https://api.github.com/repos/cross-rs/cross/releases/assets/94307579",
2024-10-13T23:09:36.9797520Z       "id": 94307579,
2024-10-13T23:09:36.9797955Z       "node_id": "RA_kwDOBJwXpM4FnwT7",
2024-10-13T23:09:36.9798658Z       "name": "cross-x86_64-unknown-linux-gnu.tar.gz",
2024-10-13T23:09:36.9799262Z       "label": "",
2024-10-13T23:09:36.9799643Z       "uploader": {
2024-10-13T23:09:36.9800126Z         "login": "github-actions[bot]",
2024-10-13T23:09:36.9800638Z         "id": 41898282,
2024-10-13T23:09:36.9801140Z         "node_id": "MDM6Qm90NDE4OTgyODI=",
2024-10-13T23:09:36.9801994Z         "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
2024-10-13T23:09:36.9802822Z         "gravatar_id": "",
2024-10-13T23:09:36.9803557Z         "url": "https://api.github.com/users/github-actions%5Bbot%5D",
2024-10-13T23:09:36.9804496Z         "html_url": "https://github.com/apps/github-actions",
2024-10-13T23:09:36.9805591Z         "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
2024-10-13T23:09:36.9807108Z         "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
2024-10-13T23:09:36.9808584Z         "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
2024-10-13T23:09:36.9810024Z         "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
2024-10-13T23:09:36.9811473Z         "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
2024-10-13T23:09:36.9813002Z         "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
2024-10-13T23:09:36.9814228Z         "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
2024-10-13T23:09:36.9815495Z         "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
2024-10-13T23:09:36.9816934Z         "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
2024-10-13T23:09:36.9817901Z         "type": "Bot",
2024-10-13T23:09:36.9818318Z         "site_admin": false
2024-10-13T23:09:36.9818738Z       },
2024-10-13T23:09:36.9819124Z       "content_type": "application/gzip",
2024-10-13T23:09:36.9819674Z       "state": "uploaded",
2024-10-13T23:09:36.9820108Z       "size": 2693133,
2024-10-13T23:09:36.9820516Z       "download_count": 99563,
2024-10-13T23:09:36.9821090Z       "created_at": "2023-02-04T17:27:41Z",
2024-10-13T23:09:36.9821726Z       "updated_at": "2023-02-04T17:27:41Z",
2024-10-13T23:09:36.9823081Z       "browser_download_url": "https://github.com/cross-rs/cross/releases/download/v0.2.5/cross-x86_64-unknown-linux-gnu.tar.gz"
2024-10-13T23:09:36.9824232Z     },
2024-10-13T23:09:36.9824546Z     {
2024-10-13T23:09:36.9825292Z       "url": "https://api.github.com/repos/cross-rs/cross/releases/assets/94307576",
2024-10-13T23:09:36.9826092Z       "id": 94307576,
2024-10-13T23:09:36.9826531Z       "node_id": "RA_kwDOBJwXpM4FnwT4",
2024-10-13T23:09:36.9827465Z       "name": "cross-x86_64-unknown-linux-musl.tar.gz",
2024-10-13T23:09:36.9828120Z       "label": "",
2024-10-13T23:09:36.9828497Z       "uploader": {
2024-10-13T23:09:36.9828984Z         "login": "github-actions[bot]",
2024-10-13T23:09:36.9829501Z         "id": 41898282,
2024-10-13T23:09:36.9829945Z         "node_id": "MDM6Qm90NDE4OTgyODI=",
2024-10-13T23:09:36.9830716Z         "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
2024-10-13T23:09:36.9831478Z         "gravatar_id": "",
2024-10-13T23:09:36.9832308Z         "url": "https://api.github.com/users/github-actions%5Bbot%5D",
2024-10-13T23:09:36.9833242Z         "html_url": "https://github.com/apps/github-actions",
2024-10-13T23:09:36.9834319Z         "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
2024-10-13T23:09:36.9835678Z         "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
2024-10-13T23:09:36.9837232Z         "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
2024-10-13T23:09:36.9838604Z         "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
2024-10-13T23:09:36.9840013Z         "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
2024-10-13T23:09:36.9841314Z         "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
2024-10-13T23:09:36.9842496Z         "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
2024-10-13T23:09:36.9843716Z         "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
2024-10-13T23:09:36.9845079Z         "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
2024-10-13T23:09:36.9845975Z         "type": "Bot",
2024-10-13T23:09:36.9846397Z         "site_admin": false
2024-10-13T23:09:36.9846828Z       },
2024-10-13T23:09:36.9847201Z       "content_type": "application/gzip",
2024-10-13T23:09:36.9847760Z       "state": "uploaded",
2024-10-13T23:09:36.9848191Z       "size": 2870100,
2024-10-13T23:09:36.9848605Z       "download_count": 640995,
2024-10-13T23:09:36.9849184Z       "created_at": "2023-02-04T17:27:41Z",
2024-10-13T23:09:36.9849808Z       "updated_at": "2023-02-04T17:27:41Z",
2024-10-13T23:09:36.9851166Z       "browser_download_url": "https://github.com/cross-rs/cross/releases/download/v0.2.5/cross-x86_64-unknown-linux-musl.tar.gz"
2024-10-13T23:09:36.9852279Z     }
2024-10-13T23:09:36.9852868Z   ],
2024-10-13T23:09:36.9853568Z   "tarball_url": "https://api.github.com/repos/cross-rs/cross/tarball/v0.2.5",
2024-10-13T23:09:36.9854699Z   "zipball_url": "https://api.github.com/repos/cross-rs/cross/zipball/v0.2.5",
2024-10-13T23:09:36.9858206Z   "body": "## What'\''s Changed\r\n\r\n### Fixed\r\n\r\n#962 - fix SELinux labels to allow use in multiple containers and/or the host filesystem.\r\n#1166 - freebsd: include memstat in build image to fix build with libc 0.2.138 and up.\r\n#1183 - resolve issue when using pre-build in Cargo.toml\r\n\r\n\r\n**Full Changelog**: https://github.com/cross-rs/cross/compare/v0.2.4...v0.2.5",
2024-10-13T23:09:36.9861035Z   "reactions": {
2024-10-13T23:09:36.9861835Z     "url": "https://api.github.com/repos/cross-rs/cross/releases/91358284/reactions",
2024-10-13T23:09:36.9862697Z     "total_count": 17,
2024-10-13T23:09:36.9863092Z     "+1": 3,
2024-10-13T23:09:36.9863482Z     "-1": 0,
2024-10-13T23:09:36.9863856Z     "laugh": 0,
2024-10-13T23:09:36.9864299Z     "hooray": 14,
2024-10-13T23:09:36.9864703Z     "confused": 0,
2024-10-13T23:09:36.9865083Z     "heart": 0,
2024-10-13T23:09:36.9865436Z     "rocket": 0,
2024-10-13T23:09:36.9865799Z     "eyes": 0
2024-10-13T23:09:36.9866172Z   }
2024-10-13T23:09:36.9866494Z }'
2024-10-13T23:09:36.9915481Z + VERSION=v0.2.5
2024-10-13T23:09:36.9916089Z + echo cross-version=v0.2.5
2024-10-13T23:09:36.9956014Z ##[group]Run set-cross-dir.sh
2024-10-13T23:09:36.9956568Z �[36;1mset-cross-dir.sh�[0m
2024-10-13T23:09:37.0040362Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2024-10-13T23:09:37.0041090Z env:
2024-10-13T23:09:37.0041487Z   CARGO_HOME: /home/runner/.cargo
2024-10-13T23:09:37.0042020Z   CARGO_INCREMENTAL: 0
2024-10-13T23:09:37.0042468Z   CARGO_TERM_COLOR: always
2024-10-13T23:09:37.0042946Z ##[endgroup]
2024-10-13T23:09:37.0162174Z + set -o pipefail
2024-10-13T23:09:37.0162899Z + echo cross-dir=/home/runner/work/_temp
2024-10-13T23:09:37.0215819Z ##[group]Run actions/cache@v4
2024-10-13T23:09:37.0216205Z with:
2024-10-13T23:09:37.0216446Z   path: /home/runner/work/_temp/cross
2024-10-13T23:09:37.0216793Z   key: Linux-v0.2.5
2024-10-13T23:09:37.0217118Z   enableCrossOsArchive: false
2024-10-13T23:09:37.0217432Z   fail-on-cache-miss: false
2024-10-13T23:09:37.0217795Z   lookup-only: false
2024-10-13T23:09:37.0218045Z   save-always: false
2024-10-13T23:09:37.0218296Z env:
2024-10-13T23:09:37.0218592Z   CARGO_HOME: /home/runner/.cargo
2024-10-13T23:09:37.0219124Z   CARGO_INCREMENTAL: 0
2024-10-13T23:09:37.0219489Z   CARGO_TERM_COLOR: always
2024-10-13T23:09:37.0219760Z ##[endgroup]
2024-10-13T23:09:37.5020695Z Cache not found for input keys: Linux-v0.2.5
2024-10-13T23:09:37.5100814Z ##[group]Run install-cross-nix.sh /home/runner/work/_temp v0.2.5
2024-10-13T23:09:37.5101353Z �[36;1minstall-cross-nix.sh /home/runner/work/_temp v0.2.5�[0m
2024-10-13T23:09:37.5158831Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2024-10-13T23:09:37.5159250Z env:
2024-10-13T23:09:37.5159471Z   CARGO_HOME: /home/runner/.cargo
2024-10-13T23:09:37.5159784Z   CARGO_INCREMENTAL: 0
2024-10-13T23:09:37.5160045Z   CARGO_TERM_COLOR: always
2024-10-13T23:09:37.5160484Z   GITHUB_TOKEN: ***
2024-10-13T23:09:37.5160720Z ##[endgroup]
2024-10-13T23:09:37.5258177Z + set -o pipefail
2024-10-13T23:09:37.5258638Z + CROSS_DIR=/home/runner/work/_temp
2024-10-13T23:09:37.5259266Z + VERSION=v0.2.5
2024-10-13T23:09:37.5259700Z + cd /home/runner/work/_temp
2024-10-13T23:09:37.5261952Z + [[ -n v0.2.5 ]]
2024-10-13T23:09:37.5262501Z + [[ v0.2.5 =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]
2024-10-13T23:09:37.5265913Z + VERSION_ARGS=
2024-10-13T23:09:37.5266724Z + '[' -n v0.2.5 ']'
2024-10-13T23:09:37.5267449Z + VERSION_ARGS='--tag v0.2.5'
2024-10-13T23:09:37.5267918Z + export TARGET=.
2024-10-13T23:09:37.5268301Z + TARGET=.
2024-10-13T23:09:37.5274102Z + curl --silent --location https://raw.githubusercontent.com/houseabsolute/ubi/master/bootstrap/bootstrap-ubi.sh
2024-10-13T23:09:37.5275525Z + sh
2024-10-13T23:09:37.7588293Z downloading https://github.com/houseabsolute/ubi/releases/latest/download/ubi-Linux-x86_64-musl.tar.gz
2024-10-13T23:09:38.5159140Z ubi-Linux-x86_64-musl.tar.gz
2024-10-13T23:09:38.5822871Z 
2024-10-13T23:09:38.5824249Z bootstrap-ubi.sh: ubi has been installed to `.`.
2024-10-13T23:09:38.5842506Z bootstrap-ubi.sh: It looks like `.` is not in your PATH. You may want to add it to use ubi.
2024-10-13T23:09:38.5842992Z 
2024-10-13T23:09:38.5859432Z + ./ubi --project cross-rs/cross --matching musl --in . --tag v0.2.5
2024-10-13T23:09:39.3282277Z + CROSS_NO_WARNINGS=0
2024-10-13T23:09:39.3283489Z + ./cross --version
2024-10-13T23:09:39.4318337Z cross 0.2.5
2024-10-13T23:09:39.6110100Z �[33m�[1m[cross] warning�[0m�[39m�[1m:�[0m unable to get metadata for package
2024-10-13T23:09:39.6112689Z �[36m�[1m[cross] note�[0m�[39m�[1m:�[0m Falling back to `cargo` on the host.
2024-10-13T23:09:39.6444111Z cargo 1.81.0 (2dbb1af80 2024-08-20)
2024-10-13T23:09:39.6616120Z ##[group]Run set-build-command.sh /home/runner/work/_temp
2024-10-13T23:09:39.6616922Z �[36;1mset-build-command.sh /home/runner/work/_temp�[0m
2024-10-13T23:09:39.6674424Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2024-10-13T23:09:39.6674818Z env:
2024-10-13T23:09:39.6675034Z   CARGO_HOME: /home/runner/.cargo
2024-10-13T23:09:39.6675340Z   CARGO_INCREMENTAL: 0
2024-10-13T23:09:39.6675589Z   CARGO_TERM_COLOR: always
2024-10-13T23:09:39.6675843Z ##[endgroup]
2024-10-13T23:09:39.6770089Z + set -o pipefail
2024-10-13T23:09:39.6770538Z + CROSS_DIR=/home/runner/work/_temp
2024-10-13T23:09:39.6771454Z + '[' -f /home/runner/work/_temp/cross ']'
2024-10-13T23:09:39.6772228Z + echo build-command=/home/runner/work/_temp/cross
2024-10-13T23:09:39.6804370Z ##[group]Run /home/runner/work/_temp/cross +stable build --locked --release --target aarch64-unknown-linux-gnu
2024-10-13T23:09:39.6805287Z �[36;1m/home/runner/work/_temp/cross +stable build --locked --release --target aarch64-unknown-linux-gnu�[0m
2024-10-13T23:09:39.6857793Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2024-10-13T23:09:39.6858199Z env:
2024-10-13T23:09:39.6858421Z   CARGO_HOME: /home/runner/.cargo
2024-10-13T23:09:39.6858734Z   CARGO_INCREMENTAL: 0
2024-10-13T23:09:39.6858996Z   CARGO_TERM_COLOR: always
2024-10-13T23:09:39.6859261Z ##[endgroup]
2024-10-13T23:09:42.9325837Z info: downloading component 'rust-src'
2024-10-13T23:09:42.9683539Z info: installing component 'rust-src'
2024-10-13T23:09:43.6834601Z Unable to find image 'ghcr.io/cross-rs/aarch64-unknown-linux-gnu:0.2.5' locally
2024-10-13T23:09:44.3276263Z 0.2.5: Pulling from cross-rs/aarch64-unknown-linux-gnu
2024-10-13T23:09:44.4866644Z 58690f9b18fc: Pulling fs layer
2024-10-13T23:09:44.4872384Z b51569e7c507: Pulling fs layer
2024-10-13T23:09:44.4873133Z da8ef40b9eca: Pulling fs layer
2024-10-13T23:09:44.4875104Z fb15d46c38dc: Pulling fs layer
2024-10-13T23:09:44.4875726Z 9d5962c83f5f: Pulling fs layer
2024-10-13T23:09:44.4876742Z 9cccf86b8f43: Pulling fs layer
2024-10-13T23:09:44.4881359Z 4c6d73517e75: Pulling fs layer
2024-10-13T23:09:44.4884591Z 4afe128e6862: Pulling fs layer
2024-10-13T23:09:44.4885293Z 2765f54cfdee: Pulling fs layer
2024-10-13T23:09:44.4886028Z 40c841a9d0e8: Pulling fs layer
2024-10-13T23:09:44.4932102Z 70c492706cd4: Pulling fs layer
2024-10-13T23:09:44.4933193Z b376264cc3c9: Pulling fs layer
2024-10-13T23:09:44.4933811Z f94a42110e99: Pulling fs layer
2024-10-13T23:09:44.4934300Z 29835156cc05: Pulling fs layer
2024-10-13T23:09:44.4934764Z d48b139772fe: Pulling fs layer
2024-10-13T23:09:44.4935272Z 55ba4d0a0c25: Pulling fs layer
2024-10-13T23:09:44.4935765Z 5f4fa2c62d4d: Pulling fs layer
2024-10-13T23:09:44.4936237Z 6bc43a1e4611: Pulling fs layer
2024-10-13T23:09:44.4936695Z fb15d46c38dc: Waiting
2024-10-13T23:09:44.4937100Z 9d5962c83f5f: Waiting
2024-10-13T23:09:44.4937491Z 9cccf86b8f43: Waiting
2024-10-13T23:09:44.4937889Z 4c6d73517e75: Waiting
2024-10-13T23:09:44.4938276Z 4afe128e6862: Waiting
2024-10-13T23:09:44.4938654Z 2765f54cfdee: Waiting
2024-10-13T23:09:44.4939040Z 40c841a9d0e8: Waiting
2024-10-13T23:09:44.4940684Z 70c492706cd4: Waiting
2024-10-13T23:09:44.4941584Z b376264cc3c9: Waiting
2024-10-13T23:09:44.4942490Z f94a42110e99: Waiting
2024-10-13T23:09:44.4943402Z 29835156cc05: Waiting
2024-10-13T23:09:44.4944317Z d48b139772fe: Waiting
2024-10-13T23:09:44.4945219Z 55ba4d0a0c25: Waiting
2024-10-13T23:09:44.4946126Z 5f4fa2c62d4d: Waiting
2024-10-13T23:09:44.4947038Z 6bc43a1e4611: Waiting
2024-10-13T23:09:44.7091011Z da8ef40b9eca: Verifying Checksum
2024-10-13T23:09:44.7093240Z da8ef40b9eca: Download complete
2024-10-13T23:09:44.7158922Z b51569e7c507: Verifying Checksum
2024-10-13T23:09:44.7161665Z b51569e7c507: Download complete
2024-10-13T23:09:44.9276174Z fb15d46c38dc: Verifying Checksum
2024-10-13T23:09:44.9277142Z fb15d46c38dc: Download complete
2024-10-13T23:09:44.9527560Z 9d5962c83f5f: Download complete
2024-10-13T23:09:45.2059864Z 4c6d73517e75: Verifying Checksum
2024-10-13T23:09:45.2060689Z 4c6d73517e75: Download complete
2024-10-13T23:09:45.4804462Z 58690f9b18fc: Verifying Checksum
2024-10-13T23:09:45.4812106Z 58690f9b18fc: Download complete
2024-10-13T23:09:45.7008231Z 2765f54cfdee: Verifying Checksum
2024-10-13T23:09:45.7008871Z 2765f54cfdee: Download complete
2024-10-13T23:09:46.1897408Z 4afe128e6862: Verifying Checksum
2024-10-13T23:09:46.1898024Z 4afe128e6862: Download complete
2024-10-13T23:09:46.6461004Z 40c841a9d0e8: Verifying Checksum
2024-10-13T23:09:46.6461644Z 40c841a9d0e8: Download complete
2024-10-13T23:09:46.8759703Z b376264cc3c9: Verifying Checksum
2024-10-13T23:09:46.8760493Z b376264cc3c9: Download complete
2024-10-13T23:09:46.9612661Z 70c492706cd4: Verifying Checksum
2024-10-13T23:09:46.9613280Z 70c492706cd4: Download complete
2024-10-13T23:09:47.2098525Z 29835156cc05: Verifying Checksum
2024-10-13T23:09:47.2099172Z 29835156cc05: Download complete
2024-10-13T23:09:47.4555841Z d48b139772fe: Verifying Checksum
2024-10-13T23:09:47.4556539Z d48b139772fe: Download complete
2024-10-13T23:09:47.5748639Z f94a42110e99: Verifying Checksum
2024-10-13T23:09:47.5749833Z f94a42110e99: Download complete
2024-10-13T23:09:47.7157880Z 55ba4d0a0c25: Verifying Checksum
2024-10-13T23:09:47.7158536Z 55ba4d0a0c25: Download complete
2024-10-13T23:09:47.8911660Z 9cccf86b8f43: Verifying Checksum
2024-10-13T23:09:47.8913689Z 9cccf86b8f43: Download complete
2024-10-13T23:09:47.9401755Z 6bc43a1e4611: Verifying Checksum
2024-10-13T23:09:47.9403720Z 6bc43a1e4611: Download complete
2024-10-13T23:09:48.0544632Z 5f4fa2c62d4d: Verifying Checksum
2024-10-13T23:09:48.0547433Z 5f4fa2c62d4d: Download complete
2024-10-13T23:09:48.2956232Z 58690f9b18fc: Pull complete
2024-10-13T23:09:51.3384587Z b51569e7c507: Pull complete
2024-10-13T23:09:51.3577205Z da8ef40b9eca: Pull complete
2024-10-13T23:09:51.3761493Z fb15d46c38dc: Pull complete
2024-10-13T23:09:51.3926606Z 9d5962c83f5f: Pull complete
2024-10-13T23:09:57.1857456Z 9cccf86b8f43: Pull complete
2024-10-13T23:09:58.3503785Z 4c6d73517e75: Pull complete
2024-10-13T23:10:01.4945884Z 4afe128e6862: Pull complete
2024-10-13T23:10:01.5131749Z 2765f54cfdee: Pull complete
2024-10-13T23:10:02.1469077Z 40c841a9d0e8: Pull complete
2024-10-13T23:10:03.6373429Z 70c492706cd4: Pull complete
2024-10-13T23:10:03.6611872Z b376264cc3c9: Pull complete
2024-10-13T23:10:06.2441805Z f94a42110e99: Pull complete
2024-10-13T23:10:06.2834888Z 29835156cc05: Pull complete
2024-10-13T23:10:06.3191897Z d48b139772fe: Pull complete
2024-10-13T23:10:06.3328278Z 55ba4d0a0c25: Pull complete
2024-10-13T23:10:06.5503288Z 5f4fa2c62d4d: Pull complete
2024-10-13T23:10:06.5744098Z 6bc43a1e4611: Pull complete
2024-10-13T23:10:06.5803434Z Digest: sha256:7f8308a8734d9fcd2ebbe9a3e4bdea74af293f0799d80c3cc341e340cda49a4c
2024-10-13T23:10:06.5824540Z Status: Downloaded newer image for ghcr.io/cross-rs/aarch64-unknown-linux-gnu:0.2.5
2024-10-13T23:10:07.0444226Z �[1m�[32m   Compiling�[0m proc-macro2 v1.0.86
2024-10-13T23:10:07.0445467Z �[1m�[32m   Compiling�[0m unicode-ident v1.0.12
2024-10-13T23:10:07.4259696Z �[1m�[32m   Compiling�[0m libc v0.2.158
2024-10-13T23:10:08.2298940Z �[1m�[32m   Compiling�[0m shlex v1.3.0
2024-10-13T23:10:08.3762745Z �[1m�[32m   Compiling�[0m quote v1.0.37
2024-10-13T23:10:08.6148944Z �[1m�[32m   Compiling�[0m syn v2.0.76
2024-10-13T23:10:08.6243393Z �[1m�[32m   Compiling�[0m cfg-if v1.0.0
2024-10-13T23:10:08.6524385Z �[1m�[32m   Compiling�[0m cc v1.1.14
2024-10-13T23:10:10.0293677Z �[1m�[32m   Compiling�[0m autocfg v1.3.0
2024-10-13T23:10:10.3547976Z �[1m�[32m   Compiling�[0m once_cell v1.19.0
2024-10-13T23:10:11.0027645Z �[1m�[32m   Compiling�[0m glob v0.3.1
2024-10-13T23:10:11.3256433Z �[1m�[32m   Compiling�[0m clang-sys v1.8.1
2024-10-13T23:10:12.2391556Z �[1m�[32m   Compiling�[0m lock_api v0.4.12
2024-10-13T23:10:12.4023098Z �[1m�[32m   Compiling�[0m memchr v2.7.4
2024-10-13T23:10:13.1442423Z �[1m�[32m   Compiling�[0m regex-syntax v0.8.4
2024-10-13T23:10:13.6014227Z �[1m�[32m   Compiling�[0m smallvec v1.13.2
2024-10-13T23:10:13.8032041Z �[1m�[32m   Compiling�[0m pin-project-lite v0.2.14
2024-10-13T23:10:13.8733491Z �[1m�[32m   Compiling�[0m parking_lot_core v0.9.10
2024-10-13T23:10:14.0591908Z �[1m�[32m   Compiling�[0m minimal-lexical v0.2.1
2024-10-13T23:10:14.2650280Z �[1m�[32m   Compiling�[0m nom v7.1.3
2024-10-13T23:10:15.1703619Z �[1m�[32m   Compiling�[0m regex-automata v0.4.7
2024-10-13T23:10:15.9051812Z �[1m�[32m   Compiling�[0m libloading v0.8.5
2024-10-13T23:10:16.0945773Z �[1m�[32m   Compiling�[0m scopeguard v1.2.0
2024-10-13T23:10:16.1365835Z �[1m�[32m   Compiling�[0m either v1.13.0
2024-10-13T23:10:16.3286522Z �[1m�[32m   Compiling�[0m bytes v1.7.1
2024-10-13T23:10:16.9680886Z �[1m�[32m   Compiling�[0m bindgen v0.70.1
2024-10-13T23:10:17.1683510Z �[1m�[32m   Compiling�[0m regex v1.10.6
2024-10-13T23:10:17.3971157Z �[1m�[32m   Compiling�[0m itertools v0.13.0
2024-10-13T23:10:18.6940568Z �[1m�[32m   Compiling�[0m cexpr v0.6.0
2024-10-13T23:10:19.4792575Z �[1m�[32m   Compiling�[0m rustc-hash v1.1.0
2024-10-13T23:10:19.5243359Z �[1m�[32m   Compiling�[0m bitflags v2.6.0
2024-10-13T23:10:22.1078443Z �[1m�[32m   Compiling�[0m parking_lot v0.12.3
2024-10-13T23:10:22.6778798Z �[1m�[32m   Compiling�[0m tokio-macros v2.4.0
2024-10-13T23:10:23.5134890Z �[1m�[32m   Compiling�[0m fslock v0.2.1
2024-10-13T23:10:23.6582739Z �[1m�[32m   Compiling�[0m tracing-core v0.1.32
2024-10-13T23:10:24.3885002Z �[1m�[32m   Compiling�[0m cmake v0.1.51
2024-10-13T23:10:24.7298302Z �[1m�[32m   Compiling�[0m socket2 v0.5.7
2024-10-13T23:10:25.2442410Z �[1m�[32m   Compiling�[0m mio v1.0.2
2024-10-13T23:10:25.6870636Z �[1m�[32m   Compiling�[0m signal-hook-registry v1.4.2
2024-10-13T23:10:25.8542725Z �[1m�[32m   Compiling�[0m fs_extra v1.3.0
2024-10-13T23:10:26.0796701Z �[1m�[32m   Compiling�[0m itoa v1.0.11
2024-10-13T23:10:26.1353113Z �[1m�[32m   Compiling�[0m futures-core v0.3.30
2024-10-13T23:10:26.1668290Z �[1m�[32m   Compiling�[0m rboring-sys v4.10.2
2024-10-13T23:10:26.2114582Z �[1m�[32m   Compiling�[0m tokio v1.39.3
2024-10-13T23:10:27.8642419Z �[1m�[32m   Compiling�[0m slab v0.4.9
2024-10-13T23:10:28.0379624Z �[1m�[32m   Compiling�[0m openssl-src v300.3.1+3.3.1
2024-10-13T23:10:28.2448323Z �[1m�[32m   Compiling�[0m tinyvec_macros v0.1.1
2024-10-13T23:10:28.2745359Z �[1m�[32m   Compiling�[0m fnv v1.0.7
2024-10-13T23:10:28.3145517Z �[1m�[32m   Compiling�[0m vcpkg v0.2.15
2024-10-13T23:10:29.0655783Z �[1m�[32m   Compiling�[0m pkg-config v0.3.30
2024-10-13T23:10:29.5561487Z �[1m�[32m   Compiling�[0m openssl-sys v0.9.103
2024-10-13T23:10:30.1068658Z �[1m�[32m   Compiling�[0m http v0.2.12
2024-10-13T23:10:31.4390793Z �[1m�[32m   Compiling�[0m tinyvec v1.8.0
2024-10-13T23:10:34.0780976Z �[1m�[32m   Compiling�[0m tracing-attributes v0.1.27
2024-10-13T23:10:35.6284200Z �[1m�[32m   Compiling�[0m foreign-types-macros v0.2.3
2024-10-13T23:10:36.3115869Z �[1m�[32m   Compiling�[0m openssl-macros v0.1.1
2024-10-13T23:10:36.7637019Z �[1m�[32m   Compiling�[0m percent-encoding v2.3.1
2024-10-13T23:10:36.9026394Z �[1m�[32m   Compiling�[0m futures-sink v0.3.30
2024-10-13T23:10:36.9554254Z �[1m�[32m   Compiling�[0m foreign-types-shared v0.3.1
2024-10-13T23:10:36.9928147Z �[1m�[32m   Compiling�[0m equivalent v1.0.1
2024-10-13T23:10:37.0326687Z �[1m�[32m   Compiling�[0m alloc-no-stdlib v2.0.4
2024-10-13T23:10:37.0997572Z �[1m�[32m   Compiling�[0m httparse v1.9.4
2024-10-13T23:10:37.3873422Z �[1m�[32m   Compiling�[0m hashbrown v0.14.5
2024-10-13T23:10:38.0110979Z �[1m�[32m   Compiling�[0m serde v1.0.209
2024-10-13T23:10:38.3641590Z �[1m�[32m   Compiling�[0m indexmap v2.4.0
2024-10-13T23:10:39.0533732Z �[1m�[32m   Compiling�[0m alloc-stdlib v0.2.2
2024-10-13T23:10:39.1216778Z �[1m�[32m   Compiling�[0m foreign-types v0.5.0
2024-10-13T23:10:39.1575500Z �[1m�[32m   Compiling�[0m tokio-util v0.7.11
2024-10-13T23:10:39.7614145Z �[1m�[32m   Compiling�[0m form_urlencoded v1.2.1
2024-10-13T23:10:39.9087952Z �[1m�[32m   Compiling�[0m tracing v0.1.40
2024-10-13T23:10:40.2723584Z �[1m�[32m   Compiling�[0m unicode-normalization v0.1.23
2024-10-13T23:11:59.9517102Z The following warnings were emitted during compilation:
2024-10-13T23:11:59.9565206Z 
2024-10-13T23:11:59.9628732Z �[1m�[33mwarning�[0m�[1m:�[0m [email protected]: applying old ciphers patch to boringssl
2024-10-13T23:11:59.9629540Z 
2024-10-13T23:11:59.9630195Z �[1m�[31merror�[0m�[1m:�[0m failed to run custom build command for `rboring-sys v4.10.2`
2024-10-13T23:11:59.9630948Z 
2024-10-13T23:11:59.9631087Z Caused by:
2024-10-13T23:11:59.9632323Z   process didn't exit successfully: `/target/release/build/rboring-sys-5845cb80dea2316c/build-script-main` (exit status: 101)
2024-10-13T23:11:59.9633571Z   --- stdout
2024-10-13T23:11:59.9634331Z   cargo:rerun-if-env-changed=BORING_BSSL_PATH_x86_64-unknown-linux-gnu
2024-10-13T23:11:59.9635877Z   cargo:rerun-if-env-changed=BORING_BSSL_PATH_x86_64_unknown_linux_gnu
2024-10-13T23:11:59.9636990Z   cargo:rerun-if-env-changed=TARGET_BORING_BSSL_PATH
2024-10-13T23:11:59.9637788Z   cargo:rerun-if-env-changed=BORING_BSSL_PATH
2024-10-13T23:11:59.9638828Z   cargo:rerun-if-env-changed=BORING_BSSL_INCLUDE_PATH_x86_64-unknown-linux-gnu
2024-10-13T23:11:59.9640096Z   cargo:rerun-if-env-changed=BORING_BSSL_INCLUDE_PATH_x86_64_unknown_linux_gnu
2024-10-13T23:11:59.9641229Z   cargo:rerun-if-env-changed=TARGET_BORING_BSSL_INCLUDE_PATH
2024-10-13T23:11:59.9642169Z   cargo:rerun-if-env-changed=BORING_BSSL_INCLUDE_PATH
2024-10-13T23:11:59.9643228Z   cargo:rerun-if-env-changed=BORING_BSSL_SOURCE_PATH_x86_64-unknown-linux-gnu
2024-10-13T23:11:59.9644490Z   cargo:rerun-if-env-changed=BORING_BSSL_SOURCE_PATH_x86_64_unknown_linux_gnu
2024-10-13T23:11:59.9645608Z   cargo:rerun-if-env-changed=TARGET_BORING_BSSL_SOURCE_PATH
2024-10-13T23:11:59.9646492Z   cargo:rerun-if-env-changed=BORING_BSSL_SOURCE_PATH
2024-10-13T23:11:59.9647972Z   cargo:rerun-if-env-changed=BORING_BSSL_PRECOMPILED_BCM_O_x86_64-unknown-linux-gnu
2024-10-13T23:11:59.9649353Z   cargo:rerun-if-env-changed=BORING_BSSL_PRECOMPILED_BCM_O_x86_64_unknown_linux_gnu
2024-10-13T23:11:59.9650567Z   cargo:rerun-if-env-changed=TARGET_BORING_BSSL_PRECOMPILED_BCM_O
2024-10-13T23:11:59.9651583Z   cargo:rerun-if-env-changed=BORING_BSSL_PRECOMPILED_BCM_O
2024-10-13T23:11:59.9655853Z   cargo:rerun-if-env-changed=BORING_BSSL_ASSUME_PATCHED_x86_64-unknown-linux-gnu
2024-10-13T23:11:59.9657274Z   cargo:rerun-if-env-changed=BORING_BSSL_ASSUME_PATCHED_x86_64_unknown_linux_gnu
2024-10-13T23:11:59.9658440Z   cargo:rerun-if-env-changed=TARGET_BORING_BSSL_ASSUME_PATCHED
2024-10-13T23:11:59.9659411Z   cargo:rerun-if-env-changed=BORING_BSSL_ASSUME_PATCHED
2024-10-13T23:11:59.9660506Z   cargo:rerun-if-env-changed=BORING_BSSL_SYSROOT_x86_64-unknown-linux-gnu
2024-10-13T23:11:59.9661703Z   cargo:rerun-if-env-changed=BORING_BSSL_SYSROOT_x86_64_unknown_linux_gnu
2024-10-13T23:11:59.9662745Z   cargo:rerun-if-env-changed=TARGET_BORING_BSSL_SYSROOT
2024-10-13T23:11:59.9663581Z   cargo:rerun-if-env-changed=BORING_BSSL_SYSROOT
2024-10-13T23:11:59.9664766Z   cargo:rerun-if-env-changed=BORING_BSSL_COMPILER_EXTERNAL_TOOLCHAIN_x86_64-unknown-linux-gnu
2024-10-13T23:11:59.9666275Z   cargo:rerun-if-env-changed=BORING_BSSL_COMPILER_EXTERNAL_TOOLCHAIN_x86_64_unknown_linux_gnu
2024-10-13T23:11:59.9667663Z   cargo:rerun-if-env-changed=TARGET_BORING_BSSL_COMPILER_EXTERNAL_TOOLCHAIN
2024-10-13T23:11:59.9668859Z   cargo:rerun-if-env-changed=BORING_BSSL_COMPILER_EXTERNAL_TOOLCHAIN
2024-10-13T23:11:59.9669903Z   cargo:rerun-if-env-changed=DEBUG_x86_64-unknown-linux-gnu
2024-10-13T23:11:59.9670869Z   cargo:rerun-if-env-changed=DEBUG_x86_64_unknown_linux_gnu
2024-10-13T23:11:59.9671691Z   cargo:rerun-if-env-changed=TARGET_DEBUG
2024-10-13T23:11:59.9672356Z   cargo:rerun-if-env-changed=DEBUG
2024-10-13T23:11:59.9673181Z   cargo:rerun-if-env-changed=OPT_LEVEL_x86_64-unknown-linux-gnu
2024-10-13T23:11:59.9674210Z   cargo:rerun-if-env-changed=OPT_LEVEL_x86_64_unknown_linux_gnu
2024-10-13T23:11:59.9675074Z   cargo:rerun-if-env-changed=TARGET_OPT_LEVEL
2024-10-13T23:11:59.9675775Z   cargo:rerun-if-env-changed=OPT_LEVEL
2024-10-13T23:11:59.9676681Z   cargo:rerun-if-env-changed=ANDROID_NDK_HOME_x86_64-unknown-linux-gnu
2024-10-13T23:11:59.9677798Z   cargo:rerun-if-env-changed=ANDROID_NDK_HOME_x86_64_unknown_linux_gnu
2024-10-13T23:11:59.9678767Z   cargo:rerun-if-env-changed=TARGET_ANDROID_NDK_HOME
2024-10-13T23:11:59.9679560Z   cargo:rerun-if-env-changed=ANDROID_NDK_HOME
2024-10-13T23:11:59.9680532Z   cargo:rerun-if-env-changed=CMAKE_TOOLCHAIN_FILE_x86_64-unknown-linux-gnu
2024-10-13T23:11:59.9681723Z   cargo:rerun-if-env-changed=CMAKE_TOOLCHAIN_FILE_x86_64_unknown_linux_gnu
2024-10-13T23:11:59.9682789Z   cargo:rerun-if-env-changed=TARGET_CMAKE_TOOLCHAIN_FILE
2024-10-13T23:11:59.9683646Z   cargo:rerun-if-env-changed=CMAKE_TOOLCHAIN_FILE
2024-10-13T23:11:59.9685525Z   Initialized empty Git repository in /target/aarch64-unknown-linux-gnu/release/build/rboring-sys-baa89f342f6da186/out/boringssl/.git/
2024-10-13T23:11:59.9686729Z 
2024-10-13T23:11:59.9687026Z   cargo:warning=applying old ciphers patch to boringssl
2024-10-13T23:11:59.9687531Z 
2024-10-13T23:11:59.9687895Z   CMAKE_GENERATOR_aarch64-unknown-linux-gnu = None
2024-10-13T23:11:59.9688614Z   CMAKE_GENERATOR_aarch64_unknown_linux_gnu = None
2024-10-13T23:11:59.9689273Z   TARGET_CMAKE_GENERATOR = None
2024-10-13T23:11:59.9689770Z   CMAKE_GENERATOR = None
2024-10-13T23:11:59.9690414Z   CMAKE_PREFIX_PATH_aarch64-unknown-linux-gnu = None
2024-10-13T23:11:59.9691161Z   CMAKE_PREFIX_PATH_aarch64_unknown_linux_gnu = None
2024-10-13T23:11:59.9691826Z   TARGET_CMAKE_PREFIX_PATH = None
2024-10-13T23:11:59.9692349Z   CMAKE_PREFIX_PATH = None
2024-10-13T23:11:59.9693662Z   CMAKE_aarch64-unknown-linux-gnu = None
2024-10-13T23:11:59.9694256Z   CMAKE_aarch64_unknown_linux_gnu = None
2024-10-13T23:11:59.9694780Z   TARGET_CMAKE = None
2024-10-13T23:11:59.9695445Z   CMAKE = None
2024-10-13T23:11:59.9702855Z   running: cd "/target/aarch64-unknown-linux-gnu/release/build/rboring-sys-baa89f342f6da186/out/build" && CMAKE_PREFIX_PATH="" "cmake" "/target/aarch64-unknown-linux-gnu/release/build/rboring-sys-baa89f342f6da186/out/boringssl" "-DCMAKE_CROSSCOMPILING=true" "-DCMAKE_C_COMPILER_TARGET=aarch64-unknown-linux-gnu" "-DCMAKE_CXX_COMPILER_TARGET=aarch64-unknown-linux-gnu" "-DCMAKE_ASM_COMPILER_TARGET=aarch64-unknown-linux-gnu" "-DCMAKE_TOOLCHAIN_FILE=/cargo/registry/src/index.crates.io-6f17d22bba15001f/rboring-sys-4.10.2/cmake/aarch64-linux.cmake" "-DCMAKE_INSTALL_PREFIX=/target/aarch64-unknown-linux-gnu/release/build/rboring-sys-baa89f342f6da186/out" "-DCMAKE_C_FLAGS= -ffunction-sections -fdata-sections -fPIC" "-DCMAKE_CXX_FLAGS= -ffunction-sections -fdata-sections -fPIC" "-DCMAKE_ASM_FLAGS= -ffunction-sections -fdata-sections -fPIC" "-DCMAKE_BUILD_TYPE=Release"
2024-10-13T23:11:59.9710098Z   -- The C compiler identification is GNU 5.4.0
2024-10-13T23:11:59.9710935Z   -- The CXX compiler identification is GNU 5.4.0
2024-10-13T23:11:59.9711661Z   -- Detecting C compiler ABI info
2024-10-13T23:11:59.9712295Z   -- Detecting C compiler ABI info - done
2024-10-13T23:11:59.9713104Z   -- Check for working C compiler: /usr/bin/cc - skipped
2024-10-13T23:11:59.9713866Z   -- Detecting C compile features
2024-10-13T23:11:59.9714503Z   -- Detecting C compile features - done
2024-10-13T23:11:59.9715161Z   -- Detecting CXX compiler ABI info
2024-10-13T23:11:59.9715895Z   -- Detecting CXX compiler ABI info - done
2024-10-13T23:11:59.9716707Z   -- Check for working CXX compiler: /usr/bin/c++ - skipped
2024-10-13T23:11:59.9717491Z   -- Detecting CXX compile features
2024-10-13T23:11:59.9718159Z   -- Detecting CXX compile features - done
2024-10-13T23:11:59.9718869Z   -- The ASM compiler identification is GNU
2024-10-13T23:11:59.9719545Z   -- Found assembler: /usr/bin/cc
2024-10-13T23:11:59.9720148Z   -- Looking for pthread.h
2024-10-13T23:11:59.9720724Z   -- Looking for pthread.h - found
2024-10-13T23:11:59.9721416Z   -- Performing Test CMAKE_HAVE_LIBC_PTHREAD
2024-10-13T23:11:59.9722227Z   -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed
2024-10-13T23:11:59.9723025Z   -- Looking for pthread_create in pthreads
2024-10-13T23:11:59.9723868Z   -- Looking for pthread_create in pthreads - not found
2024-10-13T23:11:59.9724685Z   -- Looking for pthread_create in pthread
2024-10-13T23:11:59.9725451Z   -- Looking for pthread_create in pthread - found
2024-10-13T23:11:59.9726172Z   -- Found Threads: TRUE  
2024-10-13T23:11:59.9726689Z   -- Configuring done
2024-10-13T23:11:59.9727172Z   -- Generating done
2024-10-13T23:11:59.9728482Z   -- Build files have been written to: /target/aarch64-unknown-linux-gnu/release/build/rboring-sys-baa89f342f6da186/out/build
2024-10-13T23:11:59.9731450Z   running: cd "/target/aarch64-unknown-linux-gnu/release/build/rboring-sys-baa89f342f6da186/out/build" && MAKEFLAGS="-j --jobserver-fds=8,9 --jobserver-auth=8,9" "cmake" "--build" "." "--target" "ssl" "--config" "Release"
2024-10-13T23:11:59.9736057Z   Scanning dependencies of target crypto
2024-10-13T23:11:59.9737322Z   [  0%] Building ASM object CMakeFiles/crypto.dir/apple-aarch64/crypto/chacha/chacha-armv8-apple.S.o
2024-10-13T23:11:59.9739082Z   [  0%] Building ASM object CMakeFiles/crypto.dir/apple-aarch64/crypto/cipher_extra/chacha20_poly1305_armv8-apple.S.o
2024-10-13T23:11:59.9740900Z   [  1%] Building ASM object CMakeFiles/crypto.dir/apple-aarch64/crypto/fipsmodule/aesv8-armv8-apple.S.o
2024-10-13T23:11:59.9742636Z   [  1%] Building ASM object CMakeFiles/crypto.dir/apple-aarch64/crypto/fipsmodule/aesv8-gcm-armv8-apple.S.o
2024-10-13T23:11:59.9744334Z   [  1%] Building ASM object CMakeFiles/crypto.dir/apple-aarch64/crypto/fipsmodule/armv8-mont-apple.S.o
2024-10-13T23:11:59.9745978Z   [  1%] Building ASM object CMakeFiles/crypto.dir/apple-aarch64/crypto/fipsmodule/bn-armv8-apple.S.o
2024-10-13T23:11:59.9747693Z   [  2%] Building ASM object CMakeFiles/crypto.dir/apple-aarch64/crypto/fipsmodule/ghash-neon-armv8-apple.S.o
2024-10-13T23:11:59.9749763Z   [  2%] Building ASM object CMakeFiles/crypto.dir/apple-aarch64/crypto/fipsmodule/ghashv8-armv8-apple.S.o
2024-10-13T23:11:59.9751507Z   [  2%] Building ASM object CMakeFiles/crypto.dir/apple-aarch64/crypto/fipsmodule/p256-armv8-asm-apple.S.o
2024-10-13T23:11:59.9753389Z   [  2%] Building ASM object CMakeFiles/crypto.dir/apple-aarch64/crypto/fipsmodule/p256_beeu-armv8-asm-apple.S.o
2024-10-13T23:11:59.9755113Z   [  2%] Building ASM object CMakeFiles/crypto.dir/apple-aarch64/crypto/fipsmodule/sha1-armv8-apple.S.o
2024-10-13T23:11:59.9756789Z   [  3%] Building ASM object CMakeFiles/crypto.dir/apple-aarch64/crypto/fipsmodule/sha256-armv8-apple.S.o
2024-10-13T23:11:59.9758470Z   [  3%] Building ASM object CMakeFiles/crypto.dir/apple-aarch64/crypto/fipsmodule/sha512-armv8-apple.S.o
2024-10-13T23:11:59.9760122Z   [  3%] Building ASM object CMakeFiles/crypto.dir/apple-aarch64/crypto/fipsmodule/vpaes-armv8-apple.S.o
2024-10-13T23:11:59.9761777Z   [  3%] Building ASM object CMakeFiles/crypto.dir/apple-aarch64/crypto/test/trampoline-armv8-apple.S.o
2024-10-13T23:11:59.9763421Z   [  4%] Building ASM object CMakeFiles/crypto.dir/apple-arm/crypto/chacha/chacha-armv4-apple.S.o
2024-10-13T23:11:59.9765012Z   [  4%] Building ASM object CMakeFiles/crypto.dir/apple-arm/crypto/fipsmodule/aesv8-armv7-apple.S.o
2024-10-13T23:11:59.9766567Z   [  4%] Building ASM object CMakeFiles/crypto.dir/apple-arm/crypto/fipsmodule/armv4-mont-apple.S.o
2024-10-13T23:11:59.9768156Z   [  4%] Building ASM object CMakeFiles/crypto.dir/apple-arm/crypto/fipsmodule/bsaes-armv7-apple.S.o
2024-10-13T23:11:59.9769771Z   [  5%] Building ASM object CMakeFiles/crypto.dir/apple-arm/crypto/fipsmodule/ghash-armv4-apple.S.o
2024-10-13T23:11:59.9771420Z   [  5%] Building ASM object CMakeFiles/crypto.dir/apple-arm/crypto/fipsmodule/ghashv8-armv7-apple.S.o
2024-10-13T23:11:59.9773338Z   [  5%] Building ASM object CMakeFiles/crypto.dir/apple-arm/crypto/fipsmodule/sha1-armv4-large-apple.S.o
2024-10-13T23:11:59.9775027Z   [  5%] Building ASM object CMakeFiles/crypto.dir/apple-arm/crypto/fipsmodule/sha256-armv4-apple.S.o
2024-10-13T23:11:59.9776625Z   [  6%] Building ASM object CMakeFiles/crypto.dir/apple-arm/crypto/fipsmodule/sha512-armv4-apple.S.o
2024-10-13T23:11:59.9778215Z   [  6%] Building ASM object CMakeFiles/crypto.dir/apple-arm/crypto/fipsmodule/vpaes-armv7-apple.S.o
2024-10-13T23:11:59.9779723Z   [  6%] Building ASM object CMakeFiles/crypto.dir/apple-arm/crypto/test/trampoline-armv4-apple.S.o
2024-10-13T23:11:59.9781205Z   [  6%] Building ASM object CMakeFiles/crypto.dir/apple-x86/crypto/chacha/chacha-x86-apple.S.o
2024-10-13T23:11:59.9782676Z   [  7%] Building ASM object CMakeFiles/crypto.dir/apple-x86/crypto/fipsmodule/aesni-x86-apple.S.o
2024-10-13T23:11:59.9784131Z   [  7%] Building ASM object CMakeFiles/crypto.dir/apple-x86/crypto/fipsmodule/bn-586-apple.S.o
2024-10-13T23:11:59.9785539Z   [  7%] Building ASM object CMakeFiles/crypto.dir/apple-x86/crypto/fipsmodule/co-586-apple.S.o
2024-10-13T23:11:59.9787366Z   [  7%] Building ASM object CMakeFiles/crypto.dir/apple-x86/crypto/fipsmodule/ghash-ssse3-x86-apple.S.o
2024-10-13T23:11:59.9789040Z   [  8%] Building ASM object CMakeFiles/crypto.dir/apple-x86/crypto/fipsmodule/ghash-x86-apple.S.o
2024-10-13T23:11:59.9790564Z   [  8%] Building ASM object CMakeFiles/crypto.dir/apple-x86/crypto/fipsmodule/md5-586-apple.S.o
2024-10-13T23:11:59.9792059Z   [  8%] Building ASM object CMakeFiles/crypto.dir/apple-x86/crypto/fipsmodule/sha1-586-apple.S.o
2024-10-13T23:11:59.9793596Z   [  8%] Building ASM object CMakeFiles/crypto.dir/apple-x86/crypto/fipsmodule/sha256-586-apple.S.o
2024-10-13T23:11:59.9795125Z   [  9%] Building ASM object CMakeFiles/crypto.dir/apple-x86/crypto/fipsmodule/sha512-586-apple.S.o
2024-10-13T23:11:59.9796676Z   [  9%] Building ASM object CMakeFiles/crypto.dir/apple-x86/crypto/fipsmodule/vpaes-x86-apple.S.o
2024-10-13T23:11:59.9798204Z   [  9%] Building ASM object CMakeFiles/crypto.dir/apple-x86/crypto/fipsmodule/x86-mont-apple.S.o
2024-10-13T23:11:59.9799725Z   [  9%] Building ASM object CMakeFiles/crypto.dir/apple-x86/crypto/test/trampoline-x86-apple.S.o
2024-10-13T23:11:59.9801538Z   [  9%] Building ASM object CMakeFiles/crypto.dir/apple-x86_64/crypto/chacha/chacha-x86_64-apple.S.o
2024-10-13T23:11:59.9803222Z   [ 10%] Building ASM object CMakeFiles/crypto.dir/apple-x86_64/crypto/cipher_extra/aes128gcmsiv-x86_64-apple.S.o
2024-10-13T23:11:59.9805048Z   [ 10%] Building ASM object CMakeFiles/crypto.dir/apple-x86_64/crypto/cipher_extra/chacha20_poly1305_x86_64-apple.S.o
2024-10-13T23:11:59.9806845Z   [ 10%] Building ASM object CMakeFiles/crypto.dir/apple-x86_64/crypto/fipsmodule/aesni-gcm-x86_64-apple.S.o
2024-10-13T23:11:59.9808536Z   [ 10%] Building ASM object CMakeFiles/crypto.dir/apple-x86_64/crypto/fipsmodule/aesni-x86_64-apple.S.o
2024-10-13T23:11:59.9810251Z   [ 11%] Building ASM object CMakeFiles/crypto.dir/apple-x86_64/crypto/fipsmodule/ghash-ssse3-x86_64-apple.S.o
2024-10-13T23:11:59.9811974Z   [ 11%] Building ASM object CMakeFiles/crypto.dir/apple-x86_64/crypto/fipsmodule/ghash-x86_64-apple.S.o
2024-10-13T23:11:59.9815668Z   [ 11%] Building ASM object CMakeFiles/crypto.dir/apple-x86_64/crypto/fipsmodule/md5-x86_64-apple.S.o
2024-10-13T23:11:59.9817385Z   [ 11%] Building ASM object CMakeFiles/crypto.dir/apple-x86_64/crypto/fipsmodule/p256-x86_64-asm-apple.S.o
2024-10-13T23:11:59.9819140Z   [ 12%] Building ASM object CMakeFiles/crypto.dir/apple-x86_64/crypto/fipsmodule/p256_beeu-x86_64-asm-apple.S.o
2024-10-13T23:11:59.9820879Z   [ 12%] Building ASM object CMakeFiles/crypto.dir/apple-x86_64/crypto/fipsmodule/rdrand-x86_64-apple.S.o
2024-10-13T23:11:59.9822512Z   [ 12%] Building ASM object CMakeFiles/crypto.dir/apple-x86_64/crypto/fipsmodule/rsaz-avx2-apple.S.o
2024-10-13T23:11:59.9824145Z   [ 12%] Building ASM object CMakeFiles/crypto.dir/apple-x86_64/crypto/fipsmodule/sha1-x86_64-apple.S.o
2024-10-13T23:11:59.9825802Z   [ 13%] Building ASM object CMakeFiles/crypto.dir/apple-x86_64/crypto/fipsmodule/sha256-x86_64-apple.S.o
2024-10-13T23:11:59.9827507Z   [ 13%] Building ASM object CMakeFiles/crypto.dir/apple-x86_64/crypto/fipsmodule/sha512-x86_64-apple.S.o
2024-10-13T23:11:59.9829234Z   [ 13%] Building ASM object CMakeFiles/crypto.dir/apple-x86_64/crypto/fipsmodule/vpaes-x86_64-apple.S.o
2024-10-13T23:11:59.9830932Z   [ 13%] Building ASM object CMakeFiles/crypto.dir/apple-x86_64/crypto/fipsmodule/x86_64-mont-apple.S.o
2024-10-13T23:11:59.9832604Z   [ 14%] Building ASM object CMakeFiles/crypto.dir/apple-x86_64/crypto/fipsmodule/x86_64-mont5-apple.S.o
2024-10-13T23:11:59.9834297Z   [ 14%] Building ASM object CMakeFiles/crypto.dir/apple-x86_64/crypto/test/trampoline-x86_64-apple.S.o
2024-10-13T23:11:59.9835976Z   [ 14%] Building ASM object CMakeFiles/crypto.dir/linux-aarch64/crypto/chacha/chacha-armv8-linux.S.o
2024-10-13T23:11:59.9837816Z   [ 14%] Building ASM object CMakeFiles/crypto.dir/linux-aarch64/crypto/cipher_extra/chacha20_poly1305_armv8-linux.S.o
2024-10-13T23:11:59.9839651Z   [ 15%] Building ASM object CMakeFiles/crypto.dir/linux-aarch64/crypto/fipsmodule/aesv8-armv8-linux.S.o
2024-10-13T23:11:59.9841697Z   [ 15%] Building ASM object CMakeFiles/crypto.dir/linux-aarch64/crypto/fipsmodule/aesv8-gcm-armv8-linux.S.o
2024-10-13T23:11:59.9843463Z   [ 15%] Building ASM object CMakeFiles/crypto.dir/linux-aarch64/crypto/fipsmodule/armv8-mont-linux.S.o
2024-10-13T23:11:59.9845192Z   [ 15%] Building ASM object CMakeFiles/crypto.dir/linux-aarch64/crypto/fipsmodule/bn-armv8-linux.S.o
2024-10-13T23:11:59.9846990Z   [ 16%] Building ASM object CMakeFiles/crypto.dir/linux-aarch64/crypto/fipsmodule/ghash-neon-armv8-linux.S.o
2024-10-13T23:11:59.9848815Z   [ 16%] Building ASM object CMakeFiles/crypto.dir/linux-aarch64/crypto/fipsmodule/ghashv8-armv8-linux.S.o
2024-10-13T23:11:59.9850604Z   [ 16%] Building ASM object CMakeFiles/crypto.dir/linux-aarch64/crypto/fipsmodule/p256-armv8-asm-linux.S.o
2024-10-13T23:11:59.9852666Z   [ 16%] Building ASM object CMakeFiles/crypto.dir/linux-aarch64/crypto/fipsmodule/p256_beeu-armv8-asm-linux.S.o
2024-10-13T23:11:59.9854573Z   [ 16%] Building ASM object CMakeFiles/crypto.dir/linux-aarch64/crypto/fipsmodule/sha1-armv8-linux.S.o
2024-10-13T23:11:59.9856523Z   [ 17%] Building ASM object CMakeFiles/crypto.dir/linux-aarch64/crypto/fipsmodule/sha256-armv8-linux.S.o
2024-10-13T23:11:59.9858182Z   [ 17%] Building ASM object CMakeFiles/crypto.dir/linux-aarch64/crypto/fipsmodule/sha512-armv8-linux.S.o
2024-10-13T23:11:59.9859833Z   [ 17%] Building ASM object CMakeFiles/crypto.dir/linux-aarch64/crypto/fipsmodule/vpaes-armv8-linux.S.o
2024-10-13T23:11:59.9861492Z   [ 17%] Building ASM object CMakeFiles/crypto.dir/linux-aarch64/crypto/test/trampoline-armv8-linux.S.o
2024-10-13T23:11:59.9863045Z   [ 18%] Building ASM object CMakeFiles/crypto.dir/linux-arm/crypto/chacha/chacha-armv4-linux.S.o
2024-10-13T23:11:59.9864565Z   [ 18%] Building ASM object CMakeFiles/crypto.dir/linux-arm/crypto/fipsmodule/aesv8-armv7-linux.S.o
2024-10-13T23:11:59.9866132Z   [ 18%] Building ASM object CMakeFiles/crypto.dir/linux-arm/crypto/fipsmodule/armv4-mont-linux.S.o
2024-10-13T23:11:59.9867700Z   [ 18%] Building ASM object CMakeFiles/crypto.dir/linux-arm/crypto/fipsmodule/bsaes-armv7-linux.S.o
2024-10-13T23:11:59.9869242Z   [ 19%] Building ASM object CMakeFiles/crypto.dir/linux-arm/crypto/fipsmodule/ghash-armv4-linux.S.o
2024-10-13T23:11:59.9870741Z   [ 19%] Building ASM object CMakeFiles/crypto.dir/linux-arm/crypto/fipsmodule/ghashv8-armv7-linux.S.o
2024-10-13T23:11:59.9872352Z   [ 19%] Building ASM object CMakeFiles/crypto.dir/linux-arm/crypto/fipsmodule/sha1-armv4-large-linux.S.o
2024-10-13T23:11:59.9873968Z   [ 19%] Building ASM object CMakeFiles/crypto.dir/linux-arm/crypto/fipsmodule/sha256-armv4-linux.S.o
2024-10-13T23:11:59.9875500Z   [ 20%] Building ASM object CMakeFiles/crypto.dir/linux-arm/crypto/fipsmodule/sha512-armv4-linux.S.o
2024-10-13T23:11:59.9876990Z   [ 20%] Building ASM object CMakeFiles/crypto.dir/linux-arm/crypto/fipsmodule/vpaes-armv7-linux.S.o
2024-10-13T23:11:59.9878557Z   [ 20%] Building ASM object CMakeFiles/crypto.dir/linux-arm/crypto/test/trampoline-armv4-linux.S.o
2024-10-13T23:11:59.9880077Z   [ 20%] Building ASM object CMakeFiles/crypto.dir/linux-x86/crypto/chacha/chacha-x86-linux.S.o
2024-10-13T23:11:59.9881571Z   [ 21%] Building ASM object CMakeFiles/crypto.dir/linux-x86/crypto/fipsmodule/aesni-x86-linux.S.o
2024-10-13T23:11:59.9883072Z   [ 21%] Building ASM object CMakeFiles/crypto.dir/linux-x86/crypto/fipsmodule/bn-586-linux.S.o
2024-10-13T23:11:59.9884548Z   [ 21%] Building ASM object CMakeFiles/crypto.dir/linux-x86/crypto/fipsmodule/co-586-linux.S.o
2024-10-13T23:11:59.9886116Z   [ 21%] Building ASM object CMakeFiles/crypto.dir/linux-x86/crypto/fipsmodule/ghash-ssse3-x86-linux.S.o
2024-10-13T23:11:59.9887695Z   [ 22%] Building ASM object CMakeFiles/crypto.dir/linux-x86/crypto/fipsmodule/ghash-x86-linux.S.o
2024-10-13T23:11:59.9889212Z   [ 22%] Building ASM object CMakeFiles/crypto.dir/linux-x86/crypto/fipsmodule/md5-586-linux.S.o
2024-10-13T23:11:59.9890714Z   [ 22%] Building ASM object CMakeFiles/crypto.dir/linux-x86/crypto/fipsmodule/sha1-586-linux.S.o
2024-10-13T23:11:59.9892878Z   [ 22%] Building ASM object CMakeFiles/crypto.dir/linux-x86/crypto/fipsmodule/sha256-586-linux.S.o
2024-10-13T23:11:59.9894607Z   [ 22%] Building ASM object CMakeFiles/crypto.dir/linux-x86/crypto/fipsmodule/sha512-586-linux.S.o
2024-10-13T23:11:59.9896208Z   [ 23%] Building ASM object CMakeFiles/crypto.dir/linux-x86/crypto/fipsmodule/vpaes-x86-linux.S.o
2024-10-13T23:11:59.9897753Z   [ 23%] Building ASM object CMakeFiles/crypto.dir/linux-x86/crypto/fipsmodule/x86-mont-linux.S.o
2024-10-13T23:11:59.9899283Z   [ 23%] Building ASM object CMakeFiles/crypto.dir/linux-x86/crypto/test/trampoline-x86-linux.S.o
2024-10-13T23:11:59.9900874Z   [ 23%] Building ASM object CMakeFiles/crypto.dir/linux-x86_64/crypto/chacha/chacha-x86_64-linux.S.o
2024-10-13T23:11:59.9902570Z   [ 25%] Building ASM object CMakeFiles/crypto.dir/linux-x86_64/crypto/cipher_extra/aes128gcmsiv-x86_64-linux.S.o
2024-10-13T23:11:59.9904427Z   [ 25%] Building ASM object CMakeFiles/crypto.dir/linux-x86_64/crypto/cipher_extra/chacha20_poly1305_x86_64-linux.S.o
2024-10-13T23:11:59.9906579Z   [ 25%] Building ASM object CMakeFiles/crypto.dir/linux-x86_64/crypto/fipsmodule/aesni-gcm-x86_64-linux.S.o
2024-10-13T23:11:59.9908280Z   [ 25%] Building ASM object CMakeFiles/crypto.dir/linux-x86_64/crypto/fipsmodule/aesni-x86_64-linux.S.o
2024-10-13T23:11:59.9910016Z   [ 26%] Building ASM object CMakeFiles/crypto.dir/linux-x86_64/crypto/fipsmodule/ghash-ssse3-x86_64-linux.S.o
2024-10-13T23:11:59.9911728Z   [ 26%] Building ASM object CMakeFiles/crypto.dir/linux-x86_64/crypto/fipsmodule/ghash-x86_64-linux.S.o
2024-10-13T23:11:59.9913356Z   [ 26%] Building ASM object CMakeFiles/crypto.dir/linux-x86_64/crypto/fipsmodule/md5-x86_64-linux.S.o
2024-10-13T23:11:59.9915057Z   [ 26%] Building ASM object CMakeFiles/crypto.dir/linux-x86_64/crypto/fipsmodule/p256-x86_64-asm-linux.S.o
2024-10-13T23:11:59.9916872Z   [ 27%] Building ASM object CMakeFiles/crypto.dir/linux-x86_64/crypto/fipsmodule/p256_beeu-x86_64-asm-linux.S.o
2024-10-13T23:11:59.9918582Z   [ 27%] Building ASM object CMakeFiles/crypto.dir/linux-x86_64/crypto/fipsmodule/rdrand-x86_64-linux.S.o
2024-10-13T23:11:59.9920226Z   [ 27%] Building ASM object CMakeFiles/crypto.dir/linux-x86_64/crypto/fipsmodule/rsaz-avx2-linux.S.o
2024-10-13T23:11:59.9921883Z   [ 27%] Building ASM object CMakeFiles/crypto.dir/linux-x86_64/crypto/fipsmodule/sha1-x86_64-linux.S.o
2024-10-13T23:11:59.9923529Z   [ 28%] Building ASM object CMakeFiles/crypto.dir/linux-x86_64/crypto/fipsmodule/sha256-x86_64-linux.S.o
2024-10-13T23:11:59.9925222Z   [ 28%] Building ASM object CMakeFiles/crypto.dir/linux-x86_64/crypto/fipsmodule/sha512-x86_64-linux.S.o
2024-10-13T23:11:59.9926858Z   [ 28%] Building ASM object CMakeFiles/crypto.dir/linux-x86_64/crypto/fipsmodule/vpaes-x86_64-linux.S.o
2024-10-13T23:11:59.9928511Z   [ 28%] Building ASM object CMakeFiles/crypto.dir/linux-x86_64/crypto/fipsmodule/x86_64-mont-linux.S.o
2024-10-13T23:11:59.9930156Z   [ 29%] Building ASM object CMakeFiles/crypto.dir/linux-x86_64/crypto/fipsmodule/x86_64-mont5-linux.S.o
2024-10-13T23:11:59.9931835Z   [ 29%] Building ASM object CMakeFiles/crypto.dir/linux-x86_64/crypto/test/trampoline-x86_64-linux.S.o
2024-10-13T23:11:59.9933615Z   [ 29%] Building ASM object CMakeFiles/crypto.dir/src/crypto/curve25519/asm/x25519-asm-arm.S.o
2024-10-13T23:11:59.9934933Z   [ 29%] Building ASM object CMakeFiles/crypto.dir/src/crypto/hrss/asm/poly_rq_mul.S.o
2024-10-13T23:11:59.9936187Z   [ 30%] Building ASM object CMakeFiles/crypto.dir/src/crypto/poly1305/poly1305_arm_asm.S.o
2024-10-13T23:11:59.9937674Z   [ 30%] Building ASM object CMakeFiles/crypto.dir/win-aarch64/crypto/chacha/chacha-armv8-win.S.o
2024-10-13T23:11:59.9939359Z   [ 30%] Building ASM object CMakeFiles/crypto.dir/win-aarch64/crypto/cipher_extra/chacha20_poly1305_armv8-win.S.o
2024-10-13T23:11:59.9941066Z   [ 30%] Building ASM object CMakeFiles/crypto.dir/win-aarch64/crypto/fipsmodule/aesv8-armv8-win.S.o
2024-10-13T23:11:59.9942699Z   [ 30%] Building ASM object CMakeFiles/crypto.dir/win-aarch64/crypto/fipsmodule/aesv8-gcm-armv8-win.S.o
2024-10-13T23:11:59.9944587Z   [ 31%] Building ASM object CMakeFiles/crypto.dir/win-aarch64/crypto/fipsmodule/armv8-mont-win.S.o
2024-10-13T23:11:59.9946172Z   [ 31%] Building ASM object CMakeFiles/crypto.dir/win-aarch64/crypto/fipsmodule/bn-armv8-win.S.o
2024-10-13T23:11:59.9947803Z   [ 31%] Building ASM object CMakeFiles/crypto.dir/win-aarch64/crypto/fipsmodule/ghash-neon-armv8-win.S.o
2024-10-13T23:11:59.9949552Z   [ 31%] Building ASM object CMakeFiles/crypto.dir/win-aarch64/crypto/fipsmodule/ghashv8-armv8-win.S.o
2024-10-13T23:11:59.9951250Z   [ 32%] Building ASM object CMakeFiles/crypto.dir/win-aarch64/crypto/fipsmodule/p256-armv8-asm-win.S.o
2024-10-13T23:11:59.9952966Z   [ 32%] Building ASM object CMakeFiles/crypto.dir/win-aarch64/crypto/fipsmodule/p256_beeu-armv8-asm-win.S.o
2024-10-13T23:11:59.9954654Z   [ 32%] Building ASM object CMakeFiles/crypto.dir/win-aarch64/crypto/fipsmodule/sha1-armv8-win.S.o
2024-10-13T23:11:59.9956275Z   [ 32%] Building ASM object CMakeFiles/crypto.dir/win-aarch64/crypto/fipsmodule/sha256-armv8-win.S.o
2024-10-13T23:11:59.9958191Z   [ 33%] Building ASM object CMakeFiles/crypto.dir/win-aarch64/crypto/fipsmodule/sha512-armv8-win.S.o
2024-10-13T23:11:59.9959822Z   [ 33%] Building ASM object CMakeFiles/crypto.dir/win-aarch64/crypto/fipsmodule/vpaes-armv8-win.S.o
2024-10-13T23:11:59.9961442Z   [ 33%] Building ASM object CMakeFiles/crypto.dir/win-aarch64/crypto/test/trampoline-armv8-win.S.o
2024-10-13T23:11:59.9962600Z   [ 33%] Building C object CMakeFiles/crypto.dir/err_data.c.o
2024-10-13T23:11:59.9963497Z   [ 34%] Building C object CMakeFiles/crypto.dir/src/crypto/asn1/a_bitstr.c.o
2024-10-13T23:11:59.9964294Z   [ 34%] Building C object CMakeFiles/crypto.dir/src/crypto/asn1/a_bool.c.o
2024-10-13T23:11:59.9965119Z   [ 34%] Building C object CMakeFiles/crypto.dir/src/crypto/asn1/a_d2i_fp.c.o
2024-10-13T23:11:59.9965902Z   [ 34%] Building C object CMakeFiles/crypto.dir/src/crypto/asn1/a_dup.c.o
2024-10-13T23:11:59.9966839Z   [ 35%] Building C object CMakeFiles/crypto.dir/src/crypto/asn1/a_gentm.c.o
2024-10-13T23:11:59.9967840Z   [ 35%] Building C object CMakeFiles/crypto.dir/src/crypto/asn1/a_i2d_fp.c.o
2024-10-13T23:11:59.9968804Z   [ 35%] Building C object CMakeFiles/crypto.dir/src/crypto/asn1/a_int.c.o
2024-10-13T23:11:59.9969807Z   [ 35%] Building C object CMakeFiles/crypto.dir/src/crypto/asn1/a_mbstr.c.o
2024-10-13T23:11:59.9971292Z   [ 36%] Building C object CMakeFiles/crypto.dir/src/crypto/asn1/a_object.c.o
2024-10-13T23:11:59.9972311Z   [ 36%] Building C object CMakeFiles/crypto.dir/src/crypto/asn1/a_octet.c.o
2024-10-13T23:11:59.9973604Z   [ 36%] Building C object CMakeFiles/crypto.dir/src/crypto/asn1/a_strex.c.o
2024-10-13T23:11:59.9974653Z   [ 36%] Building C object CMakeFiles/crypto.dir/src/crypto/asn1/a_strnid.c.o
2024-10-13T23:11:59.9975683Z   [ 37%] Building C object CMakeFiles/crypto.dir/src/crypto/asn1/a_time.c.o
2024-10-13T23:11:59.9976676Z   [ 37%] Building C object CMakeFiles/crypto.dir/src/crypto/asn1/a_type.c.o
2024-10-13T23:11:59.9977706Z   [ 37%] Building C object CMakeFiles/crypto.dir/src/crypto/asn1/a_utctm.c.o
2024-10-13T23:11:59.9978735Z   [ 37%] Building C object CMakeFiles/crypto.dir/src/crypto/asn1/asn1_lib.c.o
2024-10-13T23:11:59.9979770Z   [ 37%] Building C object CMakeFiles/crypto.dir/src/crypto/asn1/asn1_par.c.o
2024-10-13T23:11:59.9980811Z   [ 38%] Building C object CMakeFiles/crypto.dir/src/crypto/asn1/asn_pack.c.o
2024-10-13T23:11:59.9981858Z   [ 38%] Building C object CMakeFiles/crypto.dir/src/crypto/asn1/f_int.c.o
2024-10-13T23:11:59.9982898Z   [ 38%] Building C object CMakeFiles/crypto.dir/src/crypto/asn1/f_string.c.o
2024-10-13T23:11:59.9983973Z   [ 38%] Building C object CMakeFiles/crypto.dir/src/crypto/asn1/posix_time.c.o
2024-10-13T23:11:59.9985049Z   [ 39%] Building C object CMakeFiles/crypto.dir/src/crypto/asn1/tasn_dec.c.o
2024-10-13T23:11:59.9986086Z   [ 39%] Building C object CMakeFiles/crypto.dir/src/crypto/asn1/tasn_enc.c.o
2024-10-13T23:11:59.9987115Z   [ 39%] Building C object CMakeFiles/crypto.dir/src/crypto/asn1/tasn_fre.c.o
2024-10-13T23:11:59.9988404Z   [ 39%] Building C object CMakeFiles/crypto.dir/src/crypto/asn1/tasn_new.c.o
2024-10-13T23:11:59.9989513Z   [ 40%] Building C object CMakeFiles/crypto.dir/src/crypto/asn1/tasn_typ.c.o
2024-10-13T23:11:59.9990537Z   [ 40%] Building C object CMakeFiles/crypto.dir/src/crypto/asn1/tasn_utl.c.o
2024-10-13T23:11:59.9991566Z   [ 40%] Building C object CMakeFiles/crypto.dir/src/crypto/base64/base64.c.o
2024-10-13T23:11:59.9992552Z   [ 40%] Building C object CMakeFiles/crypto.dir/src/crypto/bio/bio.c.o
2024-10-13T23:11:59.9993576Z   [ 41%] Building C object CMakeFiles/crypto.dir/src/crypto/bio/bio_mem.c.o
2024-10-13T23:11:59.9994591Z   [ 41%] Building C object CMakeFiles/crypto.dir/src/crypto/bio/connect.c.o
2024-10-13T23:11:59.9995568Z   [ 41%] Building C object CMakeFiles/crypto.dir/src/crypto/bio/fd.c.o
2024-10-13T23:11:59.9996531Z   [ 41%] Building C object CMakeFiles/crypto.dir/src/crypto/bio/file.c.o
2024-10-13T23:11:59.9997530Z   [ 42%] Building C object CMakeFiles/crypto.dir/src/crypto/bio/hexdump.c.o
2024-10-13T23:11:59.9999049Z   [ 42%] Building C object CMakeFiles/crypto.dir/src/crypto/bio/pair.c.o
2024-10-13T23:12:00.0000061Z   [ 42%] Building C object CMakeFiles/crypto.dir/src/crypto/bio/printf.c.o
2024-10-13T23:12:00.0001059Z   [ 42%] Building C object CMakeFiles/crypto.dir/src/crypto/bio/socket.c.o
2024-10-13T23:12:00.0002080Z   [ 43%] Building C object CMakeFiles/crypto.dir/src/crypto/bio/socket_helper.c.o
2024-10-13T23:12:00.0003114Z   [ 43%] Building C object CMakeFiles/crypto.dir/src/crypto/blake2/blake2.c.o
2024-10-13T23:12:00.0004154Z   [ 43%] Building C object CMakeFiles/crypto.dir/src/crypto/bn_extra/bn_asn1.c.o
2024-10-13T23:12:00.0005245Z   [ 43%] Building C object CMakeFiles/crypto.dir/src/crypto/bn_extra/convert.c.o
2024-10-13T23:12:00.0006287Z   [ 43%] Building C object CMakeFiles/crypto.dir/src/crypto/buf/buf.c.o
2024-10-13T23:12:00.0007352Z   [ 44%] Building C object CMakeFiles/crypto.dir/src/crypto/bytestring/asn1_compat.c.o
2024-10-13T23:12:00.0008516Z   [ 44%] Building C object CMakeFiles/crypto.dir/src/crypto/bytestring/ber.c.o
2024-10-13T23:12:00.0009576Z   [ 44%] Building C object CMakeFiles/crypto.dir/src/crypto/bytestring/cbb.c.o
2024-10-13T23:12:00.0010637Z   [ 44%] Building C object CMakeFiles/crypto.dir/src/crypto/bytestring/cbs.c.o
2024-10-13T23:12:00.0011760Z   [ 45%] Building C object CMakeFiles/crypto.dir/src/crypto/bytestring/unicode.c.o
2024-10-13T23:12:00.0013186Z   [ 45%] Building C object CMakeFiles/crypto.dir/src/crypto/chacha/chacha.c.o
2024-10-13T23:12:00.0014369Z   [ 45%] Building C object CMakeFiles/crypto.dir/src/crypto/cipher_extra/cipher_extra.c.o
2024-10-13T23:12:00.0015640Z   [ 45%] Building C object CMakeFiles/crypto.dir/src/crypto/cipher_extra/derive_key.c.o
2024-10-13T23:12:00.0016879Z   [ 46%] Building C object CMakeFiles/crypto.dir/src/crypto/cipher_extra/e_aesctrhmac.c.o
2024-10-13T23:12:00.0018114Z   [ 46%] Building C object CMakeFiles/crypto.dir/src/crypto/cipher_extra/e_aesgcmsiv.c.o
2024-10-13T23:12:00.0019420Z   [ 46%] Building C object CMakeFiles/crypto.dir/src/crypto/cipher_extra/e_chacha20poly1305.c.o
2024-10-13T23:12:00.0020666Z   [ 46%] Building C object CMakeFiles/crypto.dir/src/crypto/cipher_extra/e_des.c.o
2024-10-13T23:12:00.0021825Z   [ 47%] Building C object CMakeFiles/crypto.dir/src/crypto/cipher_extra/e_null.c.o
2024-10-13T23:12:00.0022972Z   [ 47%] Building C object CMakeFiles/crypto.dir/src/crypto/cipher_extra/e_rc2.c.o
2024-10-13T23:12:00.0024115Z   [ 47%] Building C object CMakeFiles/crypto.dir/src/crypto/cipher_extra/e_rc4.c.o
2024-10-13T23:12:00.0025249Z   [ 47%] Building C object CMakeFiles/crypto.dir/src/crypto/cipher_extra/e_tls.c.o
2024-10-13T23:12:00.0026401Z   [ 48%] Building C object CMakeFiles/crypto.dir/src/crypto/cipher_extra/tls_cbc.c.o
2024-10-13T23:12:00.0027488Z   [ 48%] Building C object CMakeFiles/crypto.dir/src/crypto/conf/conf.c.o
2024-10-13T23:12:00.0028529Z   [ 48%] Building C object CMakeFiles/crypto.dir/src/crypto/cpu_aarch64_apple.c.o
2024-10-13T23:12:00.0029650Z   [ 48%] Building C object CMakeFiles/crypto.dir/src/crypto/cpu_aarch64_freebsd.c.o
2024-10-13T23:12:00.0031062Z   [ 50%] Building C object CMakeFiles/crypto.dir/src/crypto/cpu_aarch64_fuchsia.c.o
2024-10-13T23:12:00.0032198Z   [ 50%] Building C object CMakeFiles/crypto.dir/src/crypto/cpu_aarch64_linux.c.o
2024-10-13T23:12:00.0033342Z   [ 50%] Building C object CMakeFiles/crypto.dir/src/crypto/cpu_aarch64_win.c.o
2024-10-13T23:12:00.0034382Z   [ 50%] Building C object CMakeFiles/crypto.dir/src/crypto/cpu_arm.c.o
2024-10-13T23:12:00.0035409Z   [ 51%] Building C object CMakeFiles/crypto.dir/src/crypto/cpu_arm_freebsd.c.o
2024-10-13T23:12:00.0036483Z   [ 51%] Building C object CMakeFiles/crypto.dir/src/crypto/cpu_arm_linux.c.o
2024-10-13T23:12:00.0037524Z   [ 51%] Building C object CMakeFiles/crypto.dir/src/crypto/cpu_intel.c.o
2024-10-13T23:12:00.0038527Z   [ 51%] Building C object CMakeFiles/crypto.dir/src/crypto/crypto.c.o
2024-10-13T23:12:00.0039597Z   [ 51%] Building C object CMakeFiles/crypto.dir/src/crypto/curve25519/curve25519.c.o
2024-10-13T23:12:00.0041096Z   [ 52%] Building C object CMakeFiles/crypto.dir/src/crypto/curve25519/spake25519.c.o
2024-10-13T23:12:00.0042191Z   [ 52%] Building C object CMakeFiles/crypto.dir/src/crypto/des/des.c.o
2024-10-13T23:12:00.0043234Z   [ 52%] Building C object CMakeFiles/crypto.dir/src/crypto/dh_extra/dh_asn1.c.o
2024-10-13T23:12:00.0044373Z   [ 52%] Building C object CMakeFiles/crypto.dir/src/crypto/dh_extra/params.c.o
2024-10-13T23:12:00.0045569Z   [ 53%] Building C object CMakeFiles/crypto.dir/src/crypto/digest_extra/digest_extra.c.o
2024-10-13T23:12:00.0046720Z   [ 53%] Building C object CMakeFiles/crypto.dir/src/crypto/dsa/dsa.c.o
2024-10-13T23:12:00.0047761Z   [ 53%] Building C object CMakeFiles/crypto.dir/src/crypto/dsa/dsa_asn1.c.o
2024-10-13T23:12:00.0048867Z   [ 53%] Building C object CMakeFiles/crypto.dir/src/crypto/ec_extra/ec_asn1.c.o
2024-10-13T23:12:00.0050030Z   [ 54%] Building C object CMakeFiles/crypto.dir/src/crypto/ec_extra/ec_derive.c.o
2024-10-13T23:12:00.0051235Z   [ 54%] Building C object CMakeFiles/crypto.dir/src/crypto/ec_extra/hash_to_curve.c.o
2024-10-13T23:12:00.0052661Z   [ 54%] Building C object CMakeFiles/crypto.dir/src/crypto/ecdh_extra/ecdh_extra.c.o
2024-10-13T23:12:00.0053891Z   [ 54%] Building C object CMakeFiles/crypto.dir/src/crypto/ecdsa_extra/ecdsa_asn1.c.o
2024-10-13T23:12:00.0054919Z   [ 55%] Building C object CMakeFiles/crypto.dir/src/crypto/engine/engine.c.o
2024-10-13T23:12:00.0055830Z   [ 55%] Building C object CMakeFiles/crypto.dir/src/crypto/err/err.c.o
2024-10-13T23:12:00.0056715Z   [ 55%] Building C object CMakeFiles/crypto.dir/src/crypto/evp/evp.c.o
2024-10-13T23:12:00.0057608Z   [ 55%] Building C object CMakeFiles/crypto.dir/src/crypto/evp/evp_asn1.c.o
2024-10-13T23:12:00.0058548Z   [ 56%] Building C object CMakeFiles/crypto.dir/src/crypto/evp/evp_ctx.c.o
2024-10-13T23:12:00.0059509Z   [ 56%] Building C object CMakeFiles/crypto.dir/src/crypto/evp/p_dsa_asn1.c.o
2024-10-13T23:12:00.0060455Z   [ 56%] Building C object CMakeFiles/crypto.dir/src/crypto/evp/p_ec.c.o
2024-10-13T23:12:00.0061403Z   [ 56%] Building C object CMakeFiles/crypto.dir/src/crypto/evp/p_ec_asn1.c.o
2024-10-13T23:12:00.0062373Z   [ 57%] Building C object CMakeFiles/crypto.dir/src/crypto/evp/p_ed25519.c.o
2024-10-13T23:12:00.0063436Z   [ 57%] Building C object CMakeFiles/crypto.dir/src/crypto/evp/p_ed25519_asn1.c.o
2024-10-13T23:12:00.0064473Z   [ 57%] Building C object CMakeFiles/crypto.dir/src/crypto/evp/p_hkdf.c.o
2024-10-13T23:12:00.0065469Z   [ 57%] Building C object CMakeFiles/crypto.dir/src/crypto/evp/p_rsa.c.o
2024-10-13T23:12:00.0066490Z   [ 58%] Building C object CMakeFiles/crypto.dir/src/crypto/evp/p_rsa_asn1.c.o
2024-10-13T23:12:00.0067523Z   [ 58%] Building C object CMakeFiles/crypto.dir/src/crypto/evp/p_x25519.c.o
2024-10-13T23:12:00.0068575Z   [ 58%] Building C object CMakeFiles/crypto.dir/src/crypto/evp/p_x25519_asn1.c.o
2024-10-13T23:12:00.0069613Z   [ 58%] Building C object CMakeFiles/crypto.dir/src/crypto/evp/pbkdf.c.o
2024-10-13T23:12:00.0070585Z   [ 58%] Building C object CMakeFiles/crypto.dir/src/crypto/evp/print.c.o
2024-10-13T23:12:00.0071827Z   [ 59%] Building C object CMakeFiles/crypto.dir/src/crypto/evp/scrypt.c.o
2024-10-13T23:12:00.0072816Z   [ 59%] Building C object CMakeFiles/crypto.dir/src/crypto/evp/sign.c.o
2024-10-13T23:12:00.0073779Z   [ 59%] Building C object CMakeFiles/crypto.dir/src/crypto/ex_data.c.o
2024-10-13T23:12:00.0074735Z   [ 59%] Building C object CMakeFiles/crypto.dir/src/crypto/fipsmodule/bcm.c.o
2024-10-13T23:12:00.0075924Z   [ 60%] Building C object CMakeFiles/crypto.dir/src/crypto/fipsmodule/fips_shared_support.c.o
2024-10-13T23:12:00.0077122Z   [ 60%] Building C object CMakeFiles/crypto.dir/src/crypto/hpke/hpke.c.o
2024-10-13T23:12:00.0078105Z   [ 60%] Building C object CMakeFiles/crypto.dir/src/crypto/hrss/hrss.c.o
2024-10-13T23:12:00.0079153Z   [ 60%] Building C object CMakeFiles/crypto.dir/src/crypto/kyber/keccak.c.o
2024-10-13T23:12:00.0080181Z   [ 61%] Building C object CMakeFiles/crypto.dir/src/crypto/kyber/kyber.c.o
2024-10-13T23:12:00.0081481Z   [ 61%] Building C object CMakeFiles/crypto.dir/src/crypto/lhash/lhash.c.o
2024-10-13T23:12:00.0082513Z   [ 61%] Building C object CMakeFiles/crypto.dir/src/crypto/mem.c.o
2024-10-13T23:12:00.0083496Z   [ 61%] Building C object CMakeFiles/crypto.dir/src/crypto/obj/obj.c.o
2024-10-13T23:12:00.0084560Z   [ 62%] Building C object CMakeFiles/crypto.dir/src/crypto/obj/obj_xref.c.o
2024-10-13T23:12:00.0085626Z   [ 62%] Building C object CMakeFiles/crypto.dir/src/crypto/pem/pem_all.c.o
2024-10-13T23:12:00.0086671Z   [ 62%] Building C object CMakeFiles/crypto.dir/src/crypto/pem/pem_info.c.o
2024-10-13T23:12:00.0087733Z   [ 62%] Building C object CMakeFiles/crypto.dir/src/crypto/pem/pem_lib.c.o
2024-10-13T23:12:00.0088794Z   [ 63%] Building C object CMakeFiles/crypto.dir/src/crypto/pem/pem_oth.c.o
2024-10-13T23:12:00.0089855Z   [ 63%] Building C object CMakeFiles/crypto.dir/src/crypto/pem/pem_pk8.c.o
2024-10-13T23:12:00.0090943Z   [ 63%] Building C object CMakeFiles/crypto.dir/src/crypto/pem/pem_pkey.c.o
2024-10-13T23:12:00.0092049Z   [ 63%] Building C object CMakeFiles/crypto.dir/src/crypto/pem/pem_x509.c.o
2024-10-13T23:12:00.0093350Z   [ 64%] Building C object CMakeFiles/crypto.dir/src/crypto/pem/pem_xaux.c.o
2024-10-13T23:12:00.0094446Z   [ 64%] Building C object CMakeFiles/crypto.dir/src/crypto/pkcs7/pkcs7.c.o
2024-10-13T23:12:00.0095564Z   [ 64%] Building C object CMakeFiles/crypto.dir/src/crypto/pkcs7/pkcs7_x509.c.o
2024-10-13T23:12:00.0096704Z   [ 64%] Building C object CMakeFiles/crypto.dir/src/crypto/pkcs8/p5_pbev2.c.o
2024-10-13T23:12:00.0097851Z   [ 64%] Building C object CMakeFiles/crypto.dir/src/crypto/pkcs8/pkcs8.c.o
2024-10-13T23:12:00.0098961Z   [ 65%] Building C object CMakeFiles/crypto.dir/src/crypto/pkcs8/pkcs8_x509.c.o
2024-10-13T23:12:00.0100107Z   [ 65%] Building C object CMakeFiles/crypto.dir/src/crypto/poly1305/poly1305.c.o
2024-10-13T23:12:00.0101255Z   [ 65%] Building C object CMakeFiles/crypto.dir/src/crypto/poly1305/poly1305_arm.c.o
2024-10-13T23:12:00.0102454Z   [ 65%] Building C object CMakeFiles/crypto.dir/src/crypto/poly1305/poly1305_vec.c.o
2024-10-13T23:12:00.0103541Z   [ 66%] Building C object CMakeFiles/crypto.dir/src/crypto/pool/pool.c.o
2024-10-13T23:12:00.0104665Z   [ 66%] Building C object CMakeFiles/crypto.dir/src/crypto/rand_extra/deterministic.c.o
2024-10-13T23:12:00.0105869Z   [ 66%] Building C object CMakeFiles/crypto.dir/src/crypto/rand_extra/forkunsafe.c.o
2024-10-13T23:12:00.0107053Z   [ 66%] Building C object CMakeFiles/crypto.dir/src/crypto/rand_extra/fuchsia.c.o
2024-10-13T23:12:00.0108188Z   [ 67%] Building C object CMakeFiles/crypto.dir/src/crypto/rand_extra/passive.c.o
2024-10-13T23:12:00.0109345Z   [ 67%] Building C object CMakeFiles/crypto.dir/src/crypto/rand_extra/rand_extra.c.o
2024-10-13T23:12:00.0110490Z   [ 67%] Building C object CMakeFiles/crypto.dir/src/crypto/rand_extra/windows.c.o
2024-10-13T23:12:00.0111524Z   [ 67%] Building C object CMakeFiles/crypto.dir/src/crypto/rc4/rc4.c.o
2024-10-13T23:12:00.0112538Z   [ 68%] Building C object CMakeFiles/crypto.dir/src/crypto/refcount_c11.c.o
2024-10-13T23:12:00.0113884Z   [ 68%] Building C object CMakeFiles/crypto.dir/src/crypto/refcount_lock.c.o
2024-10-13T23:12:00.0115056Z   [ 68%] Building C object CMakeFiles/crypto.dir/src/crypto/rsa_extra/rsa_asn1.c.o
2024-10-13T23:12:00.0116313Z   [ 68%] Building C object CMakeFiles/crypto.dir/src/crypto/rsa_extra/rsa_crypt.c.o
2024-10-13T23:12:00.0117556Z   [ 69%] Building C object CMakeFiles/crypto.dir/src/crypto/rsa_extra/rsa_print.c.o
2024-10-13T23:12:00.0118742Z   [ 69%] Building C object CMakeFiles/crypto.dir/src/crypto/siphash/siphash.c.o
2024-10-13T23:12:00.0119804Z   [ 69%] Building C object CMakeFiles/crypto.dir/src/crypto/stack/stack.c.o
2024-10-13T23:12:00.0120819Z   [ 69%] Building C object CMakeFiles/crypto.dir/src/crypto/thread.c.o
2024-10-13T23:12:00.0121801Z   [ 70%] Building C object CMakeFiles/crypto.dir/src/crypto/thread_none.c.o
2024-10-13T23:12:00.0122849Z   [ 70%] Building C object CMakeFiles/crypto.dir/src/crypto/thread_pthread.c.o
2024-10-13T23:12:00.0124647Z   [ 70%] Building C object CMakeFiles/crypto.dir/src/crypto/thread_win.c.o
2024-10-13T23:12:00.0125764Z   [ 70%] Building C object CMakeFiles/crypto.dir/src/crypto/trust_token/pmbtoken.c.o
2024-10-13T23:12:00.0126940Z   [ 71%] Building C object CMakeFiles/crypto.dir/src/crypto/trust_token/trust_token.c.o
2024-10-13T23:12:00.0128098Z   [ 71%] Building C object CMakeFiles/crypto.dir/src/crypto/trust_token/voprf.c.o
2024-10-13T23:12:00.0129166Z   [ 71%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/a_digest.c.o
2024-10-13T23:12:00.0130198Z   [ 71%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/a_sign.c.o
2024-10-13T23:12:00.0131244Z   [ 71%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/a_verify.c.o
2024-10-13T23:12:00.0132298Z   [ 72%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/algorithm.c.o
2024-10-13T23:12:00.0133563Z   [ 72%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/asn1_gen.c.o
2024-10-13T23:12:00.0134627Z   [ 72%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/by_dir.c.o
2024-10-13T23:12:00.0135678Z   [ 72%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/by_file.c.o
2024-10-13T23:12:00.0136702Z   [ 73%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/i2d_pr.c.o
2024-10-13T23:12:00.0137730Z   [ 73%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/name_print.c.o
2024-10-13T23:12:00.0138789Z   [ 73%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/policy.c.o
2024-10-13T23:12:00.0139875Z   [ 73%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/rsa_pss.c.o
2024-10-13T23:12:00.0140905Z   [ 75%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/t_crl.c.o
2024-10-13T23:12:00.0141906Z   [ 75%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/t_req.c.o
2024-10-13T23:12:00.0142952Z   [ 75%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/t_x509.c.o
2024-10-13T23:12:00.0144013Z   [ 75%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/t_x509a.c.o
2024-10-13T23:12:00.0145079Z   [ 76%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x509.c.o
2024-10-13T23:12:00.0146135Z   [ 76%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x509_att.c.o
2024-10-13T23:12:00.0147215Z   [ 76%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x509_cmp.c.o
2024-10-13T23:12:00.0163825Z   [ 76%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x509_d2.c.o
2024-10-13T23:12:00.0164961Z   [ 77%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x509_def.c.o
2024-10-13T23:12:00.0166003Z   [ 77%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x509_ext.c.o
2024-10-13T23:12:00.0167073Z   [ 77%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x509_lu.c.o
2024-10-13T23:12:00.0168158Z   [ 77%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x509_obj.c.o
2024-10-13T23:12:00.0169279Z   [ 78%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x509_req.c.o
2024-10-13T23:12:00.0170381Z   [ 78%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x509_set.c.o
2024-10-13T23:12:00.0171753Z   [ 78%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x509_trs.c.o
2024-10-13T23:12:00.0173127Z   [ 78%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x509_txt.c.o
2024-10-13T23:12:00.0174220Z   [ 79%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x509_v3.c.o
2024-10-13T23:12:00.0175263Z   [ 79%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x509_vfy.c.o
2024-10-13T23:12:00.0176305Z   [ 79%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x509_vpm.c.o
2024-10-13T23:12:00.0177347Z   [ 79%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x509cset.c.o
2024-10-13T23:12:00.0178364Z   [ 79%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x509name.c.o
2024-10-13T23:12:00.0179342Z   [ 80%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x509rset.c.o
2024-10-13T23:12:00.0180359Z   [ 80%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x509spki.c.o
2024-10-13T23:12:00.0181394Z   [ 80%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x_algor.c.o
2024-10-13T23:12:00.0182672Z   [ 80%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x_all.c.o
2024-10-13T23:12:00.0183703Z   [ 81%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x_attrib.c.o
2024-10-13T23:12:00.0184728Z   [ 81%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x_crl.c.o
2024-10-13T23:12:00.0185732Z   [ 81%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x_exten.c.o
2024-10-13T23:12:00.0186778Z   [ 81%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x_info.c.o
2024-10-13T23:12:00.0187798Z   [ 82%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x_name.c.o
2024-10-13T23:12:00.0188812Z   [ 82%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x_pkey.c.o
2024-10-13T23:12:00.0189839Z   [ 82%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x_pubkey.c.o
2024-10-13T23:12:00.0190863Z   [ 82%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x_req.c.o
2024-10-13T23:12:00.0191877Z   [ 83%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x_sig.c.o
2024-10-13T23:12:00.0192882Z   [ 83%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x_spki.c.o
2024-10-13T23:12:00.0193894Z   [ 83%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x_val.c.o
2024-10-13T23:12:00.0194903Z   [ 83%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x_x509.c.o
2024-10-13T23:12:00.0195927Z   [ 84%] Building C object CMakeFiles/crypto.dir/src/crypto/x509/x_x509a.c.o
2024-10-13T23:12:00.0196982Z   [ 84%] Building C object CMakeFiles/crypto.dir/src/crypto/x509v3/v3_akey.c.o
2024-10-13T23:12:00.0198051Z   [ 84%] Building C object CMakeFiles/crypto.dir/src/crypto/x509v3/v3_akeya.c.o
2024-10-13T23:12:00.0199115Z   [ 84%] Building C object CMakeFiles/crypto.dir/src/crypto/x509v3/v3_alt.c.o
2024-10-13T23:12:00.0200139Z   [ 85%] Building C object CMakeFiles/crypto.dir/src/crypto/x509v3/v3_bcons.c.o
2024-10-13T23:12:00.0201202Z   [ 85%] Building C object CMakeFiles/crypto.dir/src/crypto/x509v3/v3_bitst.c.o
2024-10-13T23:12:00.0202288Z   [ 85%] Building C object CMakeFiles/crypto.dir/src/crypto/x509v3/v3_conf.c.o
2024-10-13T23:12:00.0203351Z   [ 85%] Building C object CMakeFiles/crypto.dir/src/crypto/x509v3/v3_cpols.c.o
2024-10-13T23:12:00.0204415Z   [ 85%] Building C object CMakeFiles/crypto.dir/src/crypto/x509v3/v3_crld.c.o
2024-10-13T23:12:00.0205483Z   [ 86%] Building C object CMakeFiles/crypto.dir/src/crypto/x509v3/v3_enum.c.o
2024-10-13T23:12:00.0206530Z   [ 86%] Building C object CMakeFiles/crypto.dir/src/crypto/x509v3/v3_extku.c.o
2024-10-13T23:12:00.0207578Z   [ 86%] Building C object CMakeFiles/crypto.dir/src/crypto/x509v3/v3_genn.c.o
2024-10-13T23:12:00.0208628Z   [ 86%] Building C object CMakeFiles/crypto.dir/src/crypto/x509v3/v3_ia5.c.o
2024-10-13T23:12:00.0209659Z   [ 87%] Building C object CMakeFiles/crypto.dir/src/crypto/x509v3/v3_info.c.o
2024-10-13T23:12:00.0210703Z   [ 87%] Building C object CMakeFiles/crypto.dir/src/crypto/x509v3/v3_int.c.o
2024-10-13T23:12:00.0211949Z   [ 87%] Building C object CMakeFiles/crypto.dir/src/crypto/x509v3/v3_lib.c.o
2024-10-13T23:12:00.0216791Z   [ 87%] Building C object CMakeFiles/crypto.dir/src/crypto/x509v3/v3_ncons.c.o
2024-10-13T23:12:00.0217900Z   [ 88%] Building C object CMakeFiles/crypto.dir/src/crypto/x509v3/v3_ocsp.c.o
2024-10-13T23:12:00.0218981Z   [ 88%] Building C object CMakeFiles/crypto.dir/src/crypto/x509v3/v3_pcons.c.o
2024-10-13T23:12:00.0220038Z   [ 88%] Building C object CMakeFiles/crypto.dir/src/crypto/x509v3/v3_pmaps.c.o
2024-10-13T23:12:00.0221077Z   [ 88%] Building C object CMakeFiles/crypto.dir/src/crypto/x509v3/v3_prn.c.o
2024-10-13T23:12:00.0222099Z   [ 89%] Building C object CMakeFiles/crypto.dir/src/crypto/x509v3/v3_purp.c.o
2024-10-13T23:12:00.0223165Z   [ 89%] Building C object CMakeFiles/crypto.dir/src/crypto/x509v3/v3_skey.c.o
2024-10-13T23:12:00.0224200Z   [ 89%] Building C object CMakeFiles/crypto.dir/src/crypto/x509v3/v3_utl.c.o
2024-10-13T23:12:00.0225039Z   [ 89%] Linking C static library libcrypto.a
2024-10-13T23:12:00.0225987Z   [ 89%] Built target crypto
2024-10-13T23:12:00.0226645Z   [ 90%] Building CXX object CMakeFiles/ssl.dir/src/ssl/bio_ssl.cc.o
2024-10-13T23:12:00.0227553Z   [ 90%] Building CXX object CMakeFiles/ssl.dir/src/ssl/d1_both.cc.o
2024-10-13T23:12:00.0228447Z   [ 90%] Building CXX object CMakeFiles/ssl.dir/src/ssl/d1_lib.cc.o
2024-10-13T23:12:00.0229326Z   [ 90%] Building CXX object CMakeFiles/ssl.dir/src/ssl/d1_pkt.cc.o
2024-10-13T23:12:00.0230200Z   [ 91%] Building CXX object CMakeFiles/ssl.dir/src/ssl/d1_srtp.cc.o
2024-10-13T23:12:00.0231126Z   [ 91%] Building CXX object CMakeFiles/ssl.dir/src/ssl/dtls_method.cc.o
2024-10-13T23:12:00.0232095Z   [ 91%] Building CXX object CMakeFiles/ssl.dir/src/ssl/dtls_record.cc.o
2024-10-13T23:12:00.0233122Z   [ 91%] Building CXX object CMakeFiles/ssl.dir/src/ssl/encrypted_client_hello.cc.o
2024-10-13T23:12:00.0234163Z   [ 92%] Building CXX object CMakeFiles/ssl.dir/src/ssl/extensions.cc.o
2024-10-13T23:12:00.0235082Z   [ 92%] Building CXX object CMakeFiles/ssl.dir/src/ssl/handoff.cc.o
2024-10-13T23:12:00.0236002Z   [ 92%] Building CXX object CMakeFiles/ssl.dir/src/ssl/handshake.cc.o
2024-10-13T23:12:00.0237011Z   [ 92%] Building CXX object CMakeFiles/ssl.dir/src/ssl/handshake_client.cc.o
2024-10-13T23:12:00.0238047Z   [ 92%] Building CXX object CMakeFiles/ssl.dir/src/ssl/handshake_server.cc.o
2024-10-13T23:12:00.0239009Z   [ 93%] Building CXX object CMakeFiles/ssl.dir/src/ssl/s3_both.cc.o
2024-10-13T23:12:00.0239905Z   [ 93%] Building CXX object CMakeFiles/ssl.dir/src/ssl/s3_lib.cc.o
2024-10-13T23:12:00.0240777Z   [ 93%] Building CXX object CMakeFiles/ssl.dir/src/ssl/s3_pkt.cc.o
2024-10-13T23:12:00.0241705Z   [ 93%] Building CXX object CMakeFiles/ssl.dir/src/ssl/ssl_aead_ctx.cc.o
2024-10-13T23:12:00.0242637Z   [ 94%] Building CXX object CMakeFiles/ssl.dir/src/ssl/ssl_asn1.cc.o
2024-10-13T23:12:00.0243564Z   [ 94%] Building CXX object CMakeFiles/ssl.dir/src/ssl/ssl_buffer.cc.o
2024-10-13T23:12:00.0244484Z   [ 94%] Building CXX object CMakeFiles/ssl.dir/src/ssl/ssl_cert.cc.o
2024-10-13T23:12:00.0245414Z   [ 94%] Building CXX object CMakeFiles/ssl.dir/src/ssl/ssl_cipher.cc.o
2024-10-13T23:12:00.0246331Z   [ 95%] Building CXX object CMakeFiles/ssl.dir/src/ssl/ssl_file.cc.o
2024-10-13T23:12:00.0247262Z   [ 95%] Building CXX object CMakeFiles/ssl.dir/src/ssl/ssl_key_share.cc.o
2024-10-13T23:12:00.0248211Z   [ 95%] Building CXX object CMakeFiles/ssl.dir/src/ssl/ssl_lib.cc.o
2024-10-13T23:12:00.0249119Z   [ 95%] Building CXX object CMakeFiles/ssl.dir/src/ssl/ssl_privkey.cc.o
2024-10-13T23:12:00.0250071Z   [ 96%] Building CXX object CMakeFiles/ssl.dir/src/ssl/ssl_session.cc.o
2024-10-13T23:12:00.0250988Z   [ 96%] Building CXX object CMakeFiles/ssl.dir/src/ssl/ssl_stat.cc.o
2024-10-13T23:12:00.0251925Z   [ 96%] Building CXX object CMakeFiles/ssl.dir/src/ssl/ssl_transcript.cc.o
2024-10-13T23:12:00.0253240Z   [ 96%] Building CXX object CMakeFiles/ssl.dir/src/ssl/ssl_versions.cc.o
2024-10-13T23:12:00.0254187Z   [ 97%] Building CXX object CMakeFiles/ssl.dir/src/ssl/ssl_x509.cc.o
2024-10-13T23:12:00.0255323Z   [ 97%] Building CXX object CMakeFiles/ssl.dir/src/ssl/t1_enc.cc.o
2024-10-13T23:12:00.0256246Z   [ 97%] Building CXX object CMakeFiles/ssl.dir/src/ssl/tls13_both.cc.o
2024-10-13T23:12:00.0257199Z   [ 97%] Building CXX object CMakeFiles/ssl.dir/src/ssl/tls13_client.cc.o
2024-10-13T23:12:00.0258143Z   [ 98%] Building CXX object CMakeFiles/ssl.dir/src/ssl/tls13_enc.cc.o
2024-10-13T23:12:00.0259077Z   [ 98%] Building CXX object CMakeFiles/ssl.dir/src/ssl/tls13_server.cc.o
2024-10-13T23:12:00.0260032Z   [ 98%] Building CXX object CMakeFiles/ssl.dir/src/ssl/tls_method.cc.o
2024-10-13T23:12:00.0260958Z   [ 98%] Building CXX object CMakeFiles/ssl.dir/src/ssl/tls_record.cc.o
2024-10-13T23:12:00.0261733Z   [100%] Linking CXX static library libssl.a
2024-10-13T23:12:00.0262308Z   [100%] Built target ssl
2024-10-13T23:12:00.0263412Z   cargo:root=/target/aarch64-unknown-linux-gnu/release/build/rboring-sys-baa89f342f6da186/out
2024-10-13T23:12:00.0271311Z   running: cd "/target/aarch64-unknown-linux-gnu/release/build/rboring-sys-baa89f342f6da186/out/build" && CMAKE_PREFIX_PATH="" "cmake" "/target/aarch64-unknown-linux-gnu/release/build/rboring-sys-baa89f342f6da186/out/boringssl" "-DCMAKE_CROSSCOMPILING=true" "-DCMAKE_C_COMPILER_TARGET=aarch64-unknown-linux-gnu" "-DCMAKE_CXX_COMPILER_TARGET=aarch64-unknown-linux-gnu" "-DCMAKE_ASM_COMPILER_TARGET=aarch64-unknown-linux-gnu" "-DCMAKE_TOOLCHAIN_FILE=/cargo/registry/src/index.crates.io-6f17d22bba15001f/rboring-sys-4.10.2/cmake/aarch64-linux.cmake" "-DCMAKE_INSTALL_PREFIX=/target/aarch64-unknown-linux-gnu/release/build/rboring-sys-baa89f342f6da186/out" "-DCMAKE_C_FLAGS= -ffunction-sections -fdata-sections -fPIC" "-DCMAKE_CXX_FLAGS= -ffunction-sections -fdata-sections -fPIC" "-DCMAKE_ASM_FLAGS= -ffunction-sections -fdata-sections -fPIC" "-DCMAKE_BUILD_TYPE=Release"
2024-10-13T23:12:00.0278240Z   -- Configuring done
2024-10-13T23:12:00.0278732Z   -- Generating done
2024-10-13T23:12:00.0280020Z   -- Build files have been written to: /target/aarch64-unknown-linux-gnu/release/build/rboring-sys-baa89f342f6da186/out/build
2024-10-13T23:12:00.0282992Z   running: cd "/target/aarch64-unknown-linux-gnu/release/build/rboring-sys-baa89f342f6da186/out/build" && MAKEFLAGS="-j --jobserver-fds=8,9 --jobserver-auth=8,9" "cmake" "--build" "." "--target" "crypto" "--config" "Release"
2024-10-13T23:12:00.0284967Z   Scanning dependencies of target crypto
2024-10-13T23:12:00.0285710Z   Consolidate compiler generated dependencies of target crypto
2024-10-13T23:12:00.0286455Z   [100%] Built target crypto
2024-10-13T23:12:00.0287546Z   cargo:root=/target/aarch64-unknown-linux-gnu/release/build/rboring-sys-baa89f342f6da186/out
2024-10-13T23:12:00.0289428Z   cargo:rustc-link-search=native=/target/aarch64-unknown-linux-gnu/release/build/rboring-sys-baa89f342f6da186/out/build/crypto/
2024-10-13T23:12:00.0291616Z   cargo:rustc-link-search=native=/target/aarch64-unknown-linux-gnu/release/build/rboring-sys-baa89f342f6da186/out/build/ssl/
2024-10-13T23:12:00.0293995Z   cargo:rustc-link-search=native=/target/aarch64-unknown-linux-gnu/release/build/rboring-sys-baa89f342f6da186/out/build/
2024-10-13T23:12:00.0295272Z   cargo:rustc-link-lib=static=crypto
2024-10-13T23:12:00.0295887Z   cargo:rustc-link-lib=static=ssl
2024-10-13T23:12:00.0296238Z 
2024-10-13T23:12:00.0296419Z   --- stderr
2024-10-13T23:12:00.0296642Z 
2024-10-13T23:12:00.0297766Z   /cargo/registry/src/index.crates.io-6f17d22bba15001f/rboring-sys-4.10.2/patches/boringssl-old-ciphers.patch:25: trailing whitespace.
2024-10-13T23:12:00.0299052Z    
2024-10-13T23:12:00.0300340Z   /cargo/registry/src/index.crates.io-6f17d22bba15001f/rboring-sys-4.10.2/patches/boringssl-old-ciphers.patch:27: trailing whitespace.
2024-10-13T23:12:00.0301587Z    
2024-10-13T23:12:00.0302878Z   /cargo/registry/src/index.crates.io-6f17d22bba15001f/rboring-sys-4.10.2/patches/boringssl-old-ciphers.patch:58: trailing whitespace.
2024-10-13T23:12:00.0304145Z    
2024-10-13T23:12:00.0305764Z   /cargo/registry/src/index.crates.io-6f17d22bba15001f/rboring-sys-4.10.2/patches/boringssl-old-ciphers.patch:214: trailing whitespace.
2024-10-13T23:12:00.0307125Z   // 
2024-10-13T23:12:00.0308493Z   /cargo/registry/src/index.crates.io-6f17d22bba15001f/rboring-sys-4.10.2/patches/boringssl-old-ciphers.patch:219: trailing whitespace.
2024-10-13T23:12:00.0309819Z   // 
2024-10-13T23:12:00.0310196Z   Checking patch src/ssl/internal.h...
2024-10-13T23:12:00.0310910Z   Hunk #1 succeeded at 556 (offset -21 lines).
2024-10-13T23:12:00.0311546Z   Checking patch src/ssl/ssl_cipher.cc...
2024-10-13T23:12:00.0312253Z   Hunk #6 succeeded at 657 (offset -4 lines).
2024-10-13T23:12:00.0312990Z   Hunk #7 succeeded at 1279 (offset -2 lines).
2024-10-13T23:12:00.0313638Z   Checking patch src/ssl/ssl_privkey.cc...
2024-10-13T23:12:00.0314266Z   Hunk #1 succeeded at 569 (offset 9 lines).
2024-10-13T23:12:00.0314920Z   Applied patch src/ssl/internal.h cleanly.
2024-10-13T23:12:00.0315587Z   Applied patch src/ssl/ssl_cipher.cc cleanly.
2024-10-13T23:12:00.0316321Z   Applied patch src/ssl/ssl_privkey.cc cleanly.
2024-10-13T23:12:00.0317228Z   warning: squelched 2 whitespace errors
2024-10-13T23:12:00.0317949Z   warning: 7 lines applied after fixing whitespace errors.
2024-10-13T23:12:00.0318482Z 
2024-10-13T23:12:00.0319968Z   /target/aarch64-unknown-linux-gnu/release/build/rboring-sys-baa89f342f6da186/out/boringssl/src/include/openssl/base.h:59:10: fatal error: 'stddef.h' file not found
2024-10-13T23:12:00.0322360Z   thread 'main' panicked at /cargo/registry/src/index.crates.io-6f17d22bba15001f/clang-sys-1.8.1/src/lib.rs:1859:1:
2024-10-13T23:12:00.0323327Z 
2024-10-13T23:12:00.0323859Z   A `libclang` function was called that is not supported by the loaded `libclang` instance.
2024-10-13T23:12:00.0324607Z 
2024-10-13T23:12:00.0324918Z       called function = `clang_getTranslationUnitTargetInfo`
2024-10-13T23:12:00.0325629Z       loaded `libclang` instance = 3.8.x
2024-10-13T23:12:00.0326034Z 
2024-10-13T23:12:00.0326535Z   The minimum `libclang` requirement for this particular function can be found here:
2024-10-13T23:12:00.0327964Z   https://docs.rs/clang-sys/latest/clang_sys/clang_getTranslationUnitTargetInfo/index.html
2024-10-13T23:12:00.0328761Z 
2024-10-13T23:12:00.0329085Z   Instructions for installing `libclang` can be found here:
2024-10-13T23:12:00.0330065Z   https://rust-lang.github.io/rust-bindgen/requirements.html
2024-10-13T23:12:00.0330641Z 
2024-10-13T23:12:00.0331089Z   note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
2024-10-13T23:12:00.0332306Z �[1m�[33mwarning�[0m�[1m:�[0m build failed, waiting for other jobs to finish...
2024-10-13T23:13:10.3895068Z ##[error]Process completed with exit code 101.

@autarch
Copy link
Member

autarch commented Oct 14, 2024

I'm not sure what's going on here but I don't think it's an issue with this action. It's simply failing to compile for some reason. It looks like an issue with the rboring-sys crate, maybe just on this particular target.

@skilbjo
Copy link
Author

skilbjo commented Oct 14, 2024

thanks, can you give me any other pointers for debugging?

i actually did get this to work, but not with your action -- here is the setup i used to get it to build a linux-arm target but on the ubuntu-latest-arm image (not ideal)

  build-rust:
    timeout-minutes: 10
    runs-on: ${{ matrix.runner }}
    name: build rust - ${{ matrix.name }}

    strategy:
      matrix:
        include:
          - name: linux-arm
            simple: linux-arm
            runner: ubuntu-latest-arm
            target: aarch64-unknown-linux-gnu
          # does not work: /usr/include/stdint.h:26:10: fatal error: 'bits/libc-header-start.h' file not found
          # - name: linux-arm
            # simple: linux-arm
            # runner: ubuntu-latest
            # target: aarch64-unknown-linux-gnu

    steps:
      - name: Checkout
        uses: actions/checkout@v4

      - name: Install Rust
        uses: dtolnay/rust-toolchain@stable
        with:
          targets: "${{ matrix.target }}"

      - name: Setup Cache
        uses: Swatinem/rust-cache@v2

      - name: Build Binary
        run: |
          if [[ "${{ matrix.runner }}" == "ubuntu-latest-arm" ]]; then
            export CC_aarch64_unknown_linux_gnu=/usr/bin/aarch64-linux-gnu-gcc
            export CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=/usr/bin/aarch64-linux-gnu-gcc
          fi
          cargo build --verbose --locked --release --target ${{ matrix.target }}

      - name: Release Binary
        shell: bash
        run: |
          BIN_SUFFIX=""
          if [[ "${{ matrix.runner }}" == "ubuntu-latest" || "${{ matrix.runner }}" == "ubuntu-latest-arm" ]]; then
            BIN_SUFFIX=".so"
          elif [[ "${{ matrix.runner }}" == "macos-latest" ]]; then
            BIN_SUFFIX=".dylib"
          fi

          BIN_OUTPUT="target/${{ matrix.target }}/release/libcfbypass${BIN_SUFFIX}"
          BIN_RELEASE="cfbypass-${{ matrix.simple }}${BIN_SUFFIX}"

          mkdir -p "./dist/${{ matrix.simple }}"

          mv "${BIN_OUTPUT}" "./dist/${{ matrix.simple }}/cfbypass${BIN_SUFFIX}"

      - uses: actions/upload-artifact@v4
        with:
          name: ${{ matrix.simple }}
          path: dist
          if-no-files-found: error

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

2 participants