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

Removes Dash from our Name for Simplicity #463

Merged
merged 1 commit into from
Dec 12, 2023
Merged
Show file tree
Hide file tree
Changes from all 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
4 changes: 2 additions & 2 deletions .bazelignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ bazel-out
bazel-remote-bin
bazel-remote-out
bazel-remote-testlogs
bazel-remote-native-link
bazel-remote-nativelink
bazel-root
bazel-testlogs
bazel-native-link
bazel-nativelink
2 changes: 1 addition & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
target/
*/*/.terraform-native-link-builder
*/*/.terraform-nativelink-builder
*/*/.update_scheduler_ips.zip
*/*/terraform.tfstate
*/*/.terraform
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
branches: [ main ]

jobs:
docker-compose-compiles-native-link:
docker-compose-compiles-nativelink:
# The type of runner that the job will run on.
runs-on: ubuntu-22.04
strategy:
Expand All @@ -30,7 +30,7 @@ jobs:
OS_VERSION=${{ matrix.os_version }}
ADDITIONAL_SETUP_WORKER_CMD=DEBIAN_FRONTEND=noninteractive apt-get install -y gcc g++ lld pkg-config python3
load: true # This brings the build into `docker images` from buildx.
tags: trace_machina/native-link:latest
tags: trace_machina/nativelink:latest
- uses: docker/build-push-action@v4
with:
context: .
Expand All @@ -39,7 +39,7 @@ jobs:
OPT_LEVEL=opt
OS_VERSION=${{ matrix.os_version }}
load: true # This brings the build into `docker images` from buildx.
tags: trace_machina/native-link:builder
tags: trace_machina/nativelink:builder
target: builder

- name: Compile Native Link with Native Link
Expand All @@ -48,15 +48,15 @@ jobs:
cd deployment-examples/docker-compose && \
docker-compose up -d && \
cd ../../ && \
docker run --rm --net=host -w /root/native-link -v $PWD:/root/native-link trace_machina/native-link:builder sh -c ' \
docker run --rm --net=host -w /root/nativelink -v $PWD:/root/nativelink trace_machina/nativelink:builder sh -c ' \
bazel clean && \
bazel test //... \
--remote_instance_name=main \
--remote_cache=grpc://127.0.0.1:50051 \
--remote_executor=grpc://127.0.0.1:50052 \
--remote_default_exec_properties=cpu_count=1 \
' && \
docker run --rm --net=host -w /root/native-link -v $PWD:/root/native-link trace_machina/native-link:builder sh -c ' \
docker run --rm --net=host -w /root/nativelink -v $PWD:/root/nativelink trace_machina/nativelink:builder sh -c ' \
bazel clean && \
bazel test //... \
--remote_instance_name=main \
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
OPT_LEVEL=fastbuild
OS_VERSION=${{ matrix.os_version }}
load: true # This brings the build into `docker images` from buildx.
tags: trace_machina/native-link:latest
tags: trace_machina/nativelink:latest

- name: Run tests
run: ./run_integration_tests.sh
12 changes: 6 additions & 6 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ rust_binary(
],
deps = [
"//error",
"//native-link-config",
"//native-link-scheduler",
"//native-link-service",
"//native-link-store",
"//native-link-util",
"//native-link-worker",
"//nativelink-config",
"//nativelink-scheduler",
"//nativelink-service",
"//nativelink-store",
"//nativelink-util",
"//nativelink-worker",
"//proto",
"@crate_index//:async-lock",
"@crate_index//:axum",
Expand Down
Loading
Loading