Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
linux_distro:
- Alpine Linux 3.21 # with musl
- CentOS 8.2 # with GCC 8.5.0
# - Debian Buster with GCC 9.2 # stock buster has GCC 8.3 - temporarily disabled
- Debian Bullseye with GCC 9.5 # stock bullseye has GCC 10.2
- Ubuntu 22.04 # because super popular
- Ubuntu 25.04 # because GCC 15+

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
## You should have received a copy of the GNU General Public License
## along with this program. If not, see <http://www.gnu.org/licenses/>.

FROM gcc:9.2
FROM gcc:9.5-bullseye
SHELL ["/bin/bash", "-c"]
RUN head -n1 /etc/os-release \
&& \
Expand Down Expand Up @@ -50,9 +50,9 @@ RUN head -n1 /etc/os-release \
xsltproc
RUN set -x \
&& \
[[ "$(gcc -dumpversion) == 9.2.* ]] \
[[ "$(gcc -dumpversion) == 9.5.* ]] \
&& \
[[ "$(g++ -dumpversion) == 9.2.* ]]
[[ "$(g++ -dumpversion) == 9.5.* ]]
ADD usbguard.tar usbguard/
ADD catch.tar usbguard/src/ThirdParty/Catch/
WORKDIR usbguard
Expand Down
Loading