Skip to content

Commit

Permalink
Fix clixon test container to alpine 3.19
Browse files Browse the repository at this point in the history
Affects make test and action regressions
Some issue with alpine 3.20, probably openssl 3.3 enforcing cert usage fields
  • Loading branch information
olofhagsand committed May 28, 2024
1 parent b859955 commit a194c04
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docker/test/Dockerfile.native
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
# ***** END LICENSE BLOCK *****
#

FROM alpine
FROM alpine:3.19
MAINTAINER Olof Hagsand <olof@hagsand.se>

# For clixon and cligen
Expand Down Expand Up @@ -124,7 +124,7 @@ RUN git clone https://github.com/clicon/mib-yangs.git /usr/local/share/mib-yangs
#
# Stage 2
# The second step skips the development environment and builds a runtime system
FROM alpine
FROM alpine:3.19
MAINTAINER Olof Hagsand <olof@hagsand.se>

# For clixon and cligen
Expand Down
2 changes: 1 addition & 1 deletion docker/test/startsystem_native.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ echo "$STORE" > /usr/local/var/example/running_db
# - test_install.sh since you dont have the make environment
cat <<EOF > /usr/local/bin/test/site.sh
# Add your local site specific env variables (or tests) here.
SKIPLIST="test_api.sh test_client.sh test_c++.sh test_install.sh test_privileges.sh test_restconf_ssl_certs.sh"
SKIPLIST="test_api.sh test_client.sh test_c++.sh test_install.sh test_privileges.sh"
EOF

# Patch to override YANG_INSTALLDIRS
Expand Down

0 comments on commit a194c04

Please sign in to comment.