File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 27
27
type : [gpu, cpu]
28
28
steps :
29
29
- uses : actions/checkout@v3
30
- - run : sudo .github/workflows/install_docker.sh
31
- - run : sudo .github/workflows/GHA_increase_disk_space.sh
32
30
- name : cache
33
31
uses : actions/cache@v3
34
32
with :
Original file line number Diff line number Diff line change @@ -38,6 +38,12 @@ DCC_GPU="docker compose -f docker-compose.yml -f docker/docker-compose.gpu.yml"
38
38
pushd " $( dirname " $( dirname " ${BASH_SOURCE[0]} " ) " ) "
39
39
git submodule update --init --recursive
40
40
41
+ echo build base stack
42
+ for image in foundation base minimal scipy; do
43
+ test $build_cpu = 1 && $DCC_CPU build " $@ " $image
44
+ test $build_gpu = 1 && $DCC_GPU build " $@ " $image
45
+ done
46
+
41
47
echo build ccache
42
48
test $build_cpu = 1 && $DCC_CPU build " $@ " sirf-build
43
49
test $build_gpu = 1 && $DCC_GPU build " $@ " sirf-build
You can’t perform that action at this time.
0 commit comments