Skip to content

Commit

Permalink
Integration tests for Ubuntu 24.04 (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
paveliak authored Apr 15, 2024
1 parent 8681447 commit 1037f85
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion test/nginx/Test.proj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Import Project="Directory.Build.props" />
<PropertyGroup>
<OutputType>None</OutputType>
<UnixRuntimeIdentifiers>osx-x64;osx-arm64;debian.10-x64;ubuntu.18.04-x64;ubuntu.18.04-arm64;ubuntu.20.04-x64;ubuntu.20.04-arm64;ubuntu.22.04-x64;ubuntu.22.04-arm64;opensuse.15.0-x64;fedora.34-x64;centos.9-x64</UnixRuntimeIdentifiers>
<UnixRuntimeIdentifiers>osx-x64;osx-arm64;debian.10-x64;ubuntu.18.04-x64;ubuntu.18.04-arm64;ubuntu.20.04-x64;ubuntu.20.04-arm64;ubuntu.22.04-x64;ubuntu.22.04-arm64;ubuntu.24.04-x64;ubuntu.24.04-arm64;opensuse.15.0-x64;fedora.34-x64;centos.9-x64</UnixRuntimeIdentifiers>
</PropertyGroup>

<PropertyGroup>
Expand Down
9 changes: 9 additions & 0 deletions test/nginx/ubuntu.24.04-x64.client.dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM ubuntu:24.04 AS build1
RUN apt-get -qq update -y >/dev/null
RUN apt-get -qq install -y wget >/dev/null

FROM build1 AS build2
ARG package_name
COPY ./tmp/$package_name .
RUN apt-get -qq install -y ./$package_name

9 changes: 9 additions & 0 deletions test/nginx/ubuntu.24.04-x64.server.dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM ubuntu:24.04 AS build1
RUN apt-get -qq update -y
RUN apt-get -qq install -y nginx >/dev/null
COPY index.html /var/www/html

FROM build1 AS build2
ARG package_name
COPY ./tmp/$package_name .
RUN apt-get -qq install -y ./$package_name

0 comments on commit 1037f85

Please sign in to comment.