File tree Expand file tree Collapse file tree 2 files changed +23
-9
lines changed
Expand file tree Collapse file tree 2 files changed +23
-9
lines changed Original file line number Diff line number Diff line change 1919 matrix :
2020 rosdistro : [jazzy]
2121 steps :
22+ - name : free disk
23+ uses : jlumbroso/free-disk-space@main
24+ with :
25+ tool-cache : false
2226 - uses : actions/checkout@v5
2327 with :
2428 fetch-depth : 0
@@ -96,6 +100,10 @@ jobs:
96100
97101 runs-on : ubuntu-latest
98102 steps :
103+ - name : free disk
104+ uses : jlumbroso/free-disk-space@main
105+ with :
106+ tool-cache : false
99107 - uses : actions/checkout@v5
100108 with :
101109 fetch-depth : 0
@@ -120,7 +128,11 @@ jobs:
120128 run : |
121129 python -m venv env
122130 source env/bin/activate
123- python -m pip list
131+ python -m pip install --upgrade pip
132+ sudo apt update
133+ sudo apt install -y protobuf-compiler
134+ pip install -v git+https://github.com/SSL-Roots/robocup_scenario_test
135+ pip install pytest
124136
125137 - name : Start Docker Compose services
126138 run : |
Original file line number Diff line number Diff line change 11FROM ghcr.io/ibis-ssl/crane:base
22
3- ENV ROS_OVERLAY /root/ibis_ws
4- ENV PATH $PATH:/usr/local/go/bin
3+ ENV ROS_OVERLAY= /root/ibis_ws
4+ ENV PATH= $PATH:/usr/local/go/bin
55WORKDIR $ROS_OVERLAY/src
66SHELL ["/bin/bash" , "-c" ]
77
88# cspell:ignore MAXSIZE
9- ENV PATH="/usr/lib/ccache:${PATH}"
10- ENV CC="/usr/lib/ccache/gcc"
11- ENV CXX="/usr/lib/ccache/g++"
12- ENV CCACHE_DIR=/root/.ccache
13- ENV CCACHE_MAXSIZE=10G
14- ENV USE_CCACHE=1
9+ ENV PATH="/usr/lib/ccache:${PATH}" \
10+ CC="/usr/lib/ccache/gcc" \
11+ CXX="/usr/lib/ccache/g++" \
12+ CCACHE_DIR=/root/.ccache \
13+ CCACHE_MAXSIZE=10G \
14+ CCACHE_COMPRESS=1 \
15+ CCACHE_COMPRESSLEVEL=6 \
16+ USE_CCACHE=1
1517
1618COPY dependency_*.repos crane/
1719
You can’t perform that action at this time.
0 commit comments