File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2323 runs-on : ubuntu-latest
2424 strategy :
2525 matrix :
26- container : ["alicevision/alicevision-deps:2025.03.27 -ubuntu22.04-cuda12.1.1", "alicevision/alicevision-deps:2025.03.27 -rocky9-cuda12.1.1"]
26+ container : ["alicevision/alicevision-deps:2025.05.15 -ubuntu22.04-cuda12.1.1", "alicevision/alicevision-deps:2025.05.15 -rocky9-cuda12.1.1"]
2727 container :
2828 image : ${{ matrix.container }}
2929 env :
3333 ALICEVISION_ROOT : ${{ github.workspace }}/../AV_install
3434 ALICEVISION_SENSOR_DB : ${{ github.workspace }}/../AV_install/share/aliceVision/cameraSensors.db
3535 ALICEVISION_LENS_PROFILE_INFO : " "
36- BUILD_CCTAG : " ${{ matrix.container == 'alicevision/alicevision-deps:2025.03.27 -ubuntu22.04-cuda12.1.1' && 'ON' || 'OFF' }}"
36+ BUILD_CCTAG : " ${{ matrix.container == 'alicevision/alicevision-deps:2025.05.15 -ubuntu22.04-cuda12.1.1' && 'ON' || 'OFF' }}"
3737 steps :
3838 - uses : actions/checkout@v1
3939
Original file line number Diff line number Diff line change @@ -78,6 +78,9 @@ RUN cmake "${AV_DEV}" \
7878RUN mkdir -p "${AV_INSTALL}/lib" && \
7979 ln -s lib "${AV_INSTALL}/lib64"
8080
81+ # Symlink to Python3 executable in case a call to "python" instead of "python3" is ever made
82+ RUN ln -s /usr/bin/python3 /usr/bin/python
83+
8184RUN test -e /usr/local/cuda/lib64/libcublas.so || ln -s /usr/lib/x86_64-linux-gnu/libcublas.so /usr/local/cuda/lib64/libcublas.so
8285
8386# RUN make -j ${CPU_CORES} onnxruntime
Original file line number Diff line number Diff line change @@ -93,6 +93,9 @@ RUN cmake "${AV_DEV}" \
9393RUN mkdir -p "${AV_INSTALL}/lib" && \
9494 ln -s lib "${AV_INSTALL}/lib64"
9595
96+ # Symlink to Python3 executable in case a call to "python" instead of "python3" is ever made
97+ RUN ln -s /usr/bin/python3 /usr/bin/python
98+
9699RUN test -e /usr/local/cuda/lib64/libcublas.so || ln -s /usr/lib/x86_64-linux-gnu/libcublas.so /usr/local/cuda/lib64/libcublas.so
97100
98101# RUN make -j ${CPU_CORES} lapack
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ test -e docker/fetch.sh || {
66 exit 1
77}
88
9- test -z " $AV_DEPS_VERSION " && AV_DEPS_VERSION=2025.02.21
9+ test -z " $AV_DEPS_VERSION " && AV_DEPS_VERSION=2025.05.15
1010test -z " $AV_VERSION " && AV_VERSION=" $( git rev-parse --abbrev-ref HEAD) -$( git rev-parse --short HEAD) "
1111test -z " $CUDA_VERSION " && CUDA_VERSION=12.1.1
1212test -z " $ROCKY_VERSION " && ROCKY_VERSION=9
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ test -e docker/fetch.sh || {
66 exit 1
77}
88
9- test -z " $AV_DEPS_VERSION " && AV_DEPS_VERSION=2025.02.21
9+ test -z " $AV_DEPS_VERSION " && AV_DEPS_VERSION=2025.05.15
1010test -z " $AV_VERSION " && AV_VERSION=" $( git rev-parse --abbrev-ref HEAD) -$( git rev-parse --short HEAD) "
1111test -z " $CUDA_VERSION " && CUDA_VERSION=12.1.1
1212test -z " $UBUNTU_VERSION " && UBUNTU_VERSION=22.04
You can’t perform that action at this time.
0 commit comments