Skip to content

Commit

Permalink
chore: make sure aws-lc-sys wouldn't be built (GreptimeTeam#4767)
Browse files Browse the repository at this point in the history
* chore: make sure aws-lc-sys wouldn't be built

* fix: bash

* refactor: multiple line bash
  • Loading branch information
discord9 authored Sep 25, 2024
1 parent cd4bf23 commit 0274e75
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,13 @@ jobs:
- name: Install cargo-gc-bin
shell: bash
run: cargo install cargo-gc-bin
- name: Check aws-lc-sys will not build
shell: bash
run: |
if cargo tree -i aws-lc-sys -e features | grep -q aws-lc-sys; then
echo "Found aws-lc-sys, which has compilation problems on older gcc versions. Please replace it with ring until its building experience improves."
exit 1
fi
- name: Build greptime bianry
shell: bash
# `cargo gc` will invoke `cargo build` with specified args
Expand Down

0 comments on commit 0274e75

Please sign in to comment.