Skip to content

Commit 8e76f1d

Browse files
SeaOtocinclusfacebook-github-bot
authored andcommitted
{Build} Update VRS + Remove unnecessary boost modules (#132)
Summary: Pull Request resolved: #132 Taking here a more recent version of VRS and updating the boost dependencies to match - i.e. `libboost-chrono-dev libboost-thread-dev` are no longer required Tested locally with: ``` pixi run run_c pixi run run_python ``` Reviewed By: PiotrBrzyski Differential Revision: D61865452 fbshipit-source-id: 34947f87cf36f0825adf292592c017d1f2a68182
1 parent f34ee14 commit 8e76f1d

5 files changed

+4
-12
lines changed

.github/workflows/build-and-test.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,10 @@ jobs:
4141
libfmt-dev \
4242
libturbojpeg-dev libpng-dev \
4343
liblz4-dev libzstd-dev libxxhash-dev \
44-
libboost-chrono-dev \
4544
libboost-date-time-dev \
4645
libboost-filesystem-dev \
4746
libboost-iostreams-dev \
48-
libboost-system-dev \
49-
libboost-thread-dev
47+
libboost-system-dev
5048
5149
# Clean APT cache
5250
sudo apt-get clean

.github/workflows/build-and-test_projects.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,10 @@ jobs:
4343
libfmt-dev \
4444
libturbojpeg-dev libpng-dev \
4545
liblz4-dev libzstd-dev libxxhash-dev \
46-
libboost-chrono-dev \
4746
libboost-date-time-dev \
4847
libboost-filesystem-dev \
4948
libboost-iostreams-dev \
50-
libboost-system-dev \
51-
libboost-thread-dev
49+
libboost-system-dev
5250
5351
# Clean APT cache
5452
sudo apt-get clean

.github/workflows/build-wheels-and-deploy.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,10 @@ jobs:
4848
libfmt-dev \
4949
libturbojpeg-dev libpng-dev \
5050
liblz4-dev libzstd-dev libxxhash-dev \
51-
libboost-chrono-dev \
5251
libboost-date-time-dev \
5352
libboost-filesystem-dev \
5453
libboost-iostreams-dev \
55-
libboost-system-dev \
56-
libboost-thread-dev
54+
libboost-system-dev
5755
# Clean APT cache
5856
sudo apt-get clean
5957
- name: Install projectaria_tools

Dockerfile

-2
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,10 @@ RUN sudo apt-get install -y libpython3-dev python3-pip;
3535
# Install VRS dependencies and compile/install VRS
3636

3737
RUN sudo apt-get install -y \
38-
libboost-chrono-dev \
3938
libboost-date-time-dev \
4039
libboost-filesystem-dev \
4140
libboost-iostreams-dev \
4241
libboost-system-dev \
43-
libboost-thread-dev \
4442
libfmt-dev \
4543
libgmock-dev libgtest-dev \
4644
liblz4-dev \

cmake/Setup3rdParty.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ FetchContent_Declare(
2323
FetchContent_Declare(
2424
vrs
2525
GIT_REPOSITORY https://github.com/facebookresearch/vrs.git
26-
GIT_TAG 36b785597175ee8b6a0b291b203df4799522b65b # master July 24, 2024.
26+
GIT_TAG b5b854ea618f45fdce8c5d69e11cc879845adfc9 # master August 14, 2024.
2727
)
2828
# Override config for vrs
2929
option(UNIT_TESTS OFF)

0 commit comments

Comments
 (0)