[TransferEngine] Correct the count of slice_quque_ in rdma/worker_pool, remove the repeated check for overlap #68
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Build(linux)' | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build-ubuntu: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: configure | |
run: | | |
sudo apt update -y | |
sudo bash -x dependencies.sh | |
mkdir build | |
cd build | |
cmake .. -DUSE_HTTP=ON | |
shell: bash | |
- name: make | |
run: | | |
cd build | |
make -j | |
shell: bash | |
- name: start-metadata-server | |
run: | | |
cd mooncake-transfer-engine/example/http-metadata-server | |
export PATH=$PATH:/usr/local/go/bin | |
go mod tidy && go build -o http-metadata-server . | |
./http-metadata-server --addr=:8090 & | |
shell: bash | |
- name: test | |
run: | | |
cd build | |
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib | |
ldconfig -v || echo "always continue" | |
MC_METADATA_SERVER=http://127.0.0.1:8090/metadata make test -j ARGS="-V" | |
shell: bash |