Skip to content

Commit

Permalink
Add installation of required packages for Linux-x86_64
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Orris committed Mar 11, 2024
1 parent d0d46f7 commit 4ab4738
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/verify-pr-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,14 +135,19 @@ jobs:
- stable
steps:
- run: echo "Cross Build ${{ matrix.platform.os_name }} with rust ${{ matrix.toolchain }}"
# if ${{ matrix.platform.os_name }} == "Linux-x86_64"
- name: Install Required Packages
run: |
sudo apt-get update
sudo apt install -y protobuf-compiler libclang-dev clang cmake
- uses: actions/checkout@v4
- name: Build Binary
uses: ./.github/workflows/common/rust-cross
with:
command: "build"
target: ${{ matrix.platform.target }}
toolchain: ${{ matrix.toolchain }}
args: "--release --features frequency-no-relay"
args: "--features frequency-no-relay"
strip: true
# - name: Rename Binary (linux and macos)
# run: mv target/${{ matrix.platform.target }}/release/frequency ${{ matrix.platform.binary }}
Expand Down

0 comments on commit 4ab4738

Please sign in to comment.