File tree 5 files changed +10
-4
lines changed
5 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 23
23
runs-on : ubuntu-latest
24
24
strategy :
25
25
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"]
27
27
container :
28
28
image : ${{ matrix.container }}
29
29
env :
33
33
ALICEVISION_ROOT : ${{ github.workspace }}/../AV_install
34
34
ALICEVISION_SENSOR_DB : ${{ github.workspace }}/../AV_install/share/aliceVision/cameraSensors.db
35
35
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' }}"
37
37
steps :
38
38
- uses : actions/checkout@v1
39
39
Original file line number Diff line number Diff line change @@ -78,6 +78,9 @@ RUN cmake "${AV_DEV}" \
78
78
RUN mkdir -p "${AV_INSTALL}/lib" && \
79
79
ln -s lib "${AV_INSTALL}/lib64"
80
80
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
+
81
84
RUN test -e /usr/local/cuda/lib64/libcublas.so || ln -s /usr/lib/x86_64-linux-gnu/libcublas.so /usr/local/cuda/lib64/libcublas.so
82
85
83
86
# RUN make -j ${CPU_CORES} onnxruntime
Original file line number Diff line number Diff line change @@ -93,6 +93,9 @@ RUN cmake "${AV_DEV}" \
93
93
RUN mkdir -p "${AV_INSTALL}/lib" && \
94
94
ln -s lib "${AV_INSTALL}/lib64"
95
95
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
+
96
99
RUN test -e /usr/local/cuda/lib64/libcublas.so || ln -s /usr/lib/x86_64-linux-gnu/libcublas.so /usr/local/cuda/lib64/libcublas.so
97
100
98
101
# 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 || {
6
6
exit 1
7
7
}
8
8
9
- test -z " $AV_DEPS_VERSION " && AV_DEPS_VERSION=2025.02.21
9
+ test -z " $AV_DEPS_VERSION " && AV_DEPS_VERSION=2025.05.15
10
10
test -z " $AV_VERSION " && AV_VERSION=" $( git rev-parse --abbrev-ref HEAD) -$( git rev-parse --short HEAD) "
11
11
test -z " $CUDA_VERSION " && CUDA_VERSION=12.1.1
12
12
test -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 || {
6
6
exit 1
7
7
}
8
8
9
- test -z " $AV_DEPS_VERSION " && AV_DEPS_VERSION=2025.02.21
9
+ test -z " $AV_DEPS_VERSION " && AV_DEPS_VERSION=2025.05.15
10
10
test -z " $AV_VERSION " && AV_VERSION=" $( git rev-parse --abbrev-ref HEAD) -$( git rev-parse --short HEAD) "
11
11
test -z " $CUDA_VERSION " && CUDA_VERSION=12.1.1
12
12
test -z " $UBUNTU_VERSION " && UBUNTU_VERSION=22.04
You can’t perform that action at this time.
0 commit comments