Skip to content

Update compose commands #39

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

Closed
wants to merge 1 commit into from
Closed
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
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
docker-image:
docker-compose build libswiftnav
docker compose build libswiftnav

docker: docker-image
docker-compose run libswiftnav
docker compose run libswiftnav

docker-build: docker-image
mkdir -p build
docker-compose run -T libswiftnav /bin/bash -c "cd build && cmake .. && make -j4"
docker compose run -T libswiftnav /bin/bash -c "cd build && cmake .. && make -j4"

docker-lint: docker-image
mkdir -p build
docker-compose run -T libswiftnav /bin/bash -c "cd build && cmake .. && make -j4 clang-format-all"
docker compose run -T libswiftnav /bin/bash -c "cd build && cmake .. && make -j4 clang-format-all"

do-all-unit-tests:
bazel test --test_tag_filters=unit --test_output=all //...
Expand Down
Loading