We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e430542 commit 88bab8dCopy full SHA for 88bab8d
.github/workflows/release.yml
@@ -18,11 +18,21 @@ jobs:
18
ref: ${{ github.event.inputs.tag }}
19
- name: Setup Rust
20
run: rustup show
21
+
22
+ - name: Inspect node runner env
23
+ run: |
24
+ # Output our glibc version of the github runner
25
+ ldd --version
26
27
- name: Build
28
run: |
29
cargo build --locked --release --features turing-node,oak-node
30
mkdir -p artifacts/
31
cp target/release/oak-collator artifacts/
32
+ - name: Inspect glibc
33
34
+ # We current support glibc <= 2.31(Ubuntu 20 LTS). Expect all output of a smaller or equal glibc version.
35
+ objdump -T target/release/oak-collator | grep GLIBC | sed 's/.*GLIBC_\([.0-9]*\).*/\1/g' | sort -Vu
36
- name: Build debian
37
38
cargo install cargo-deb
0 commit comments