Skip to content

Commit

Permalink
Inspect node compiler (#476)
Browse files Browse the repository at this point in the history
* show glibc version of runner and final artifact

* Update release.yml

---------

Co-authored-by: Chris Li <[email protected]>
  • Loading branch information
v9n and chrisli30 committed Dec 13, 2023
1 parent e430542 commit 88bab8d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,21 @@ jobs:
ref: ${{ github.event.inputs.tag }}
- name: Setup Rust
run: rustup show

- name: Inspect node runner env
run: |
# Output our glibc version of the github runner
ldd --version
- name: Build
run: |
cargo build --locked --release --features turing-node,oak-node
mkdir -p artifacts/
cp target/release/oak-collator artifacts/
- name: Inspect glibc
run: |
# We current support glibc <= 2.31(Ubuntu 20 LTS). Expect all output of a smaller or equal glibc version.
objdump -T target/release/oak-collator | grep GLIBC | sed 's/.*GLIBC_\([.0-9]*\).*/\1/g' | sort -Vu
- name: Build debian
run: |
cargo install cargo-deb
Expand Down

0 comments on commit 88bab8d

Please sign in to comment.