Skip to content
This repository has been archived by the owner on Feb 28, 2023. It is now read-only.

rename internal components #134

Merged
merged 16 commits into from
Jan 18, 2022
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
rustc: 1.56.1 # Oldest supported version, keep in sync with README.md
- os: ubuntu-20.04
rustc: 1.56.1
extra_desc: dist-server
extra_desc: dist-worker
extra_args: --no-default-features --features=dist-tests test_dist_ -- --test-threads 1
- os: ubuntu-20.04
rustc: stable
Expand Down Expand Up @@ -153,9 +153,9 @@ jobs:
path: target_repo

- name: Double-check that cachepot is not running
run: cachepot --stop-server || true
run: cachepot --stop-coordinator || true
- name: Start the local cachepot server daemon
run: cachepot --start-server
run: cachepot --start-coordinator
# This is the main server that's going to send the compilation requests
# so logging is more important for this than for subsequent (client)
# cachepot invocations
Expand Down Expand Up @@ -192,10 +192,10 @@ jobs:
include:
- os: ubuntu-20.04
target: x86_64-unknown-linux-musl
extra_args: --features="dist-server"
extra_args: --features="dist-worker"
- os: ubuntu-20.04
binary: cachepot-dist
extra_args: --features="dist-server"
extra_args: --features="dist-worker"
target: x86_64-unknown-linux-musl
- os: ubuntu-20.04
target: aarch64-unknown-linux-musl
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ build:
<<: *build-refs
stage: build
variables:
FEATURES: "openssl/vendored,dist-server"
FEATURES: "openssl/vendored,dist-worker"
script:
- cargo +stable build --locked --release --verbose --bin cachepot-dist --target x86_64-unknown-linux-musl --features=${FEATURES}
# collect artifacts
Expand Down
Loading