Skip to content

Commit

Permalink
ci: build GreptimeDB binaries for later use
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelScofield committed Jan 26, 2024
1 parent f99b087 commit f3744e5
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 30 deletions.
5 changes: 3 additions & 2 deletions .github/actions/build-greptime-binary/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ inputs:
required: true
cargo-profile:
description: Cargo profile to build
required: true
required: false
artifacts-dir:
description: Directory to store artifacts
required: true
Expand Down Expand Up @@ -41,7 +41,8 @@ runs:
uses: ./.github/actions/upload-artifacts
if: ${{ inputs.build-android-artifacts == 'false' }}
env:
PROFILE_TARGET: ${{ inputs.cargo-profile == 'dev' && 'debug' || inputs.cargo-profile }}
# If inputs.cargo-profile is empty, we will use 'debug' as default.
PROFILE_TARGET: ${{ inputs.cargo-profile == '' && 'debug' || inputs.cargo-profile }}
with:
artifacts-dir: ${{ inputs.artifacts-dir }}
target-file: ./target/$PROFILE_TARGET/greptime
Expand Down
44 changes: 24 additions & 20 deletions .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,26 +76,38 @@ jobs:
- name: Run taplo
run: taplo format --check

build:
name: Build GreptimeDB binaries
if: github.event.pull_request.draft == false
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-20.04-8-cores ]
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/build-greptime-binary
with:
base-image: ubuntu
features: ''
artifacts-dir: bins
version: current
- run: cp ./target/debug/sqlness-runner ./bins
- name: Print bins info
run: ls -lh ./bins

sqlness:
name: Sqlness Test
if: github.event.pull_request.draft == false
needs: build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-20.04-8-cores ]
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
- uses: arduino/setup-protoc@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Run sqlness
run: cargo sqlness
run: GREPTIME_BINS_DIR=./bins ./bins/sqlness-runner
- name: Upload sqlness logs
if: always()
uses: actions/upload-artifact@v3
Expand All @@ -107,26 +119,18 @@ jobs:
sqlness-kafka-wal:
name: Sqlness Test with Kafka Wal
if: github.event.pull_request.draft == false
needs: build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-20.04-8-cores ]
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
- uses: arduino/setup-protoc@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Setup kafka server
working-directory: tests-integration/fixtures/kafka
run: docker compose -f docker-compose-standalone.yml up -d --wait
- name: Run sqlness
run: cargo sqlness -w kafka -k 127.0.0.1:9092
run: GREPTIME_BINS_DIR=./bins ./bins/sqlness-runner -w kafka -k 127.0.0.1:9092
- name: Upload sqlness logs
if: always()
uses: actions/upload-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion docker/dev-builder/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ RUN apt-get -y purge python3.8 && \
# wildcard here. However, that requires the git's config files and the submodules all owned by the very same user.
# It's troublesome to do this since the dev build runs in Docker, which is under user "root"; while outside the Docker,
# it can be a different user that have prepared the submodules.
RUN git config --global --add safe.directory ‘*’
RUN git config --global --add safe.directory *

# Install Python dependencies.
COPY $DOCKER_BUILD_ROOT/docker/python/requirements.txt /etc/greptime/requirements.txt
Expand Down
30 changes: 25 additions & 5 deletions tests/runner/src/env.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ pub struct Env {
data_home: PathBuf,
server_addr: Option<String>,
wal: WalConfig,

/// The path to the directory that contains the pre-built GreptimeDB binary.
/// When running in CI, this is expected to be set.
/// If not set, this runner will build the GreptimeDB binary itself when needed, and set this field by then.
bins_dir: Arc<Mutex<Option<PathBuf>>>,
}

#[async_trait]
Expand All @@ -79,18 +84,20 @@ impl EnvController for Env {

impl Env {
pub fn new(data_home: PathBuf, server_addr: Option<String>, wal: WalConfig) -> Self {
let bins_dir = std::env::var("GREPTIME_BINS_DIR").map(PathBuf::from).ok();
Self {
data_home,
server_addr,
wal,
bins_dir: Arc::new(Mutex::new(bins_dir)),
}
}

async fn start_standalone(&self) -> GreptimeDB {
if let Some(server_addr) = self.server_addr.clone() {
self.connect_db(&server_addr)
} else {
Self::build_db().await;
self.build_db();
self.setup_wal();

let db_ctx = GreptimeDBContext::new(self.wal.clone());
Expand All @@ -116,7 +123,7 @@ impl Env {
if let Some(server_addr) = self.server_addr.clone() {
self.connect_db(&server_addr)
} else {
Self::build_db().await;
self.build_db();
self.setup_wal();

let db_ctx = GreptimeDBContext::new(self.wal.clone());
Expand Down Expand Up @@ -249,8 +256,12 @@ impl Env {
#[cfg(windows)]
let program = "greptime.exe";

let bins_dir = self.bins_dir.lock().unwrap().clone().expect(
"GreptimeDB binary is not available. Please set the GREPTIME_BINS_DIR environment variable to the directory that contains the pre-built GreptimeDB binary. Or you may call `self.build_db()` beforehand.",
);

let mut process = Command::new(program)
.current_dir(util::get_binary_dir("debug"))
.current_dir(bins_dir)
.env("TZ", "UTC")
.args(args)
.stdout(log_file)
Expand Down Expand Up @@ -374,7 +385,11 @@ impl Env {
}

/// Build the DB with `cargo build --bin greptime`
async fn build_db() {
fn build_db(&self) {
if self.bins_dir.lock().unwrap().is_some() {
return;
}

println!("Going to build the DB...");
let output = Command::new("cargo")
.current_dir(util::get_workspace_root())
Expand All @@ -389,7 +404,12 @@ impl Env {
io::stderr().write_all(&output.stderr).unwrap();
panic!();
}
println!("Build finished, starting...");

let _ = self
.bins_dir
.lock()
.unwrap()
.insert(util::get_binary_dir("debug"));
}
}

Expand Down
4 changes: 2 additions & 2 deletions tests/runner/src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,15 +91,15 @@ pub fn get_workspace_root() -> String {
runner_crate_path.into_os_string().into_string().unwrap()
}

pub fn get_binary_dir(mode: &str) -> String {
pub fn get_binary_dir(mode: &str) -> PathBuf {
// first go to the workspace root.
let mut workspace_root = PathBuf::from(get_workspace_root());

// change directory to target dir (workspace/target/<build mode>/)
workspace_root.push("target");
workspace_root.push(mode);

workspace_root.into_os_string().into_string().unwrap()
workspace_root
}

/// Spin-waiting a socket address is available, or timeout.
Expand Down

0 comments on commit f3744e5

Please sign in to comment.