Skip to content

Commit d3fd49f

Browse files
authored
fix: Remove mc (#127)
* fix: mc setup env vars are not set * fix: Remove mc
1 parent 5343849 commit d3fd49f

File tree

3 files changed

+1
-10
lines changed

3 files changed

+1
-10
lines changed

.github/workflows/continuous-benchmark.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,14 @@ jobs:
1515
- uses: webfactory/[email protected]
1616
with:
1717
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
18-
- name: Setup CI
19-
run: bash -x tools/setup_ci.sh
2018
- name: Benches
2119
run: |
2220
export HCLOUD_TOKEN=${{ secrets.HCLOUD_TOKEN }}
2321
export GCS_KEY=${{ secrets.GCS_KEY }}
2422
export GCS_SECRET=${{ secrets.GCS_SECRET }}
2523
export POSTGRES_PASSWORD=${{ secrets.POSTGRES_PASSWORD }}
2624
export POSTGRES_HOST=${{ secrets.POSTGRES_HOST }}
25+
bash -x tools/setup_ci.sh
2726
2827
declare -A DATASET_TO_ENGINE
2928
DATASET_TO_ENGINE["laion-small-clip"]="qdrant-continuous-benchmark"

tools/run_ci.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ SCRIPT_PATH=$(dirname "$SCRIPT")
99

1010
bash -x "${SCRIPT_PATH}/run_remote_benchmark.sh"
1111

12-
./mc cp results/* qdrant/vector-search-engines-benchmark/results/ci/qdrant/
13-
1412
# Upload to postgres
1513
# -t sorts by modification time
1614
export SEARCH_RESULTS_FILE=$(ls -t results/*-search-*.json | head -n 1)

tools/setup_ci.sh

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,3 @@ wget https://github.com/hetznercloud/cli/releases/download/${HCVERSION}/hcloud-l
1414
tar xzf hcloud-linux-amd64.tar.gz
1515

1616
sudo mv hcloud /usr/local/bin
17-
18-
# Install mc
19-
20-
wget https://dl.min.io/client/mc/release/linux-amd64/mc
21-
chmod +x mc
22-
./mc alias set qdrant https://storage.googleapis.com "${GCS_KEY}" "${GCS_SECRET}"

0 commit comments

Comments
 (0)