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

[ci/cd] Include qaul-matrix-bridge in Linux build pipeline #597

Open
wants to merge 2 commits into
base: matrix-bridge-rebased-23082023
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions .circleci/continue-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -465,20 +465,20 @@ jobs:
- run:
command: |
sudo apt update
sudo apt install -y protobuf-compiler libdbus-1-dev pkg-config
sudo apt install -y protobuf-compiler libdbus-1-dev pkg-config cmake libssl-dev build-essential
protoc --version
name: Install protoc
- setup-sccache
- restore-sccache-cache
- run:
command: cd rust && cargo build --release
command: cd rust && cargo build --release --all
name: Build Libqaul for Linux
- save-sccache-cache
- run:
command: |
cd rust/target/release
mkdir cli-binaries
mv qauld qaul-cli cli-binaries
mv qauld qaul-cli qaul-matrix-bridge cli-binaries
cd cli-binaries
zip linux-cli-binaries *
name: zip command-line binaries
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@ steps:
name: Install protoc
command: |
sudo apt update
sudo apt install -y protobuf-compiler libdbus-1-dev pkg-config
sudo apt install -y protobuf-compiler libdbus-1-dev pkg-config cmake libssl-dev build-essential
protoc --version
- setup-sccache
- restore-sccache-cache
- run:
name: Build Libqaul for Linux
command: cd rust && cargo build --release
command: cd rust && cargo build --release --all
- save-sccache-cache
- run:
name: zip command-line binaries
command: |
cd rust/target/release
mkdir cli-binaries
mv qauld qaul-cli cli-binaries
mv qauld qaul-cli qaul-matrix-bridge cli-binaries
cd cli-binaries
zip linux-cli-binaries *
- persist_to_workspace:
Expand Down