Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMirzayanov committed Sep 4, 2023
1 parent 87d5d25 commit a591441
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/docker/clang-11/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM silkeh/clang:11
RUN apt-get update
RUN apt-get install -y git
RUN apt-get install -y git default-jre
COPY startup.sh /
WORKDIR /
RUN chmod +x /startup.sh
Expand Down
2 changes: 1 addition & 1 deletion tests/docker/clang-latest/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM silkeh/clang:latest
RUN apt-get update
RUN apt-get install -y git
RUN apt-get install -y git default-jre
COPY startup.sh /
WORKDIR /
RUN chmod +x /startup.sh
Expand Down
2 changes: 2 additions & 0 deletions tests/docker/gcc-latest/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
FROM gcc:latest
RUN apt-get update
RUN apt-get install -y git default-jre
COPY startup.sh /
WORKDIR /
RUN chmod +x /startup.sh
Expand Down
3 changes: 3 additions & 0 deletions tests/run.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
#!/bin/bash
set -e -o pipefail

echo "Checking installed Java"
java -version

TESTS_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)
export TESTS_DIR="$TESTS_DIR"

Expand Down

0 comments on commit a591441

Please sign in to comment.