-
Notifications
You must be signed in to change notification settings - Fork 479
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #178 from MikeMirzayanov/dev-mikemirzayanov
Fixed BOM issues, fixed tests and CI
- Loading branch information
Showing
49 changed files
with
2,068 additions
and
325 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
FROM silkeh/clang:11 | ||
RUN apt-get update | ||
RUN apt-get install -y git default-jre | ||
COPY startup.sh / | ||
WORKDIR / | ||
RUN chmod +x /startup.sh | ||
CMD ["/bin/bash", "/startup.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
"C:\Program Files\Docker\Docker"\DockerCli.exe -SwitchLinuxEngine | ||
|
||
docker build . -t test-testlib-clang-11 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
"C:\Program Files\Docker\Docker"\DockerCli.exe -SwitchLinuxEngine | ||
|
||
docker run -it test-testlib-clang-11 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
set -e -o pipefail | ||
|
||
git clone https://github.com/MikeMirzayanov/testlib.git | ||
cd testlib | ||
git checkout dev-mikemirzayanov | ||
cd tests | ||
./run.sh v0 11 | ||
cd / | ||
rm -rf testlib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
FROM silkeh/clang:latest | ||
RUN apt-get update | ||
RUN apt-get install -y git default-jre valgrind | ||
COPY startup.sh / | ||
WORKDIR / | ||
RUN chmod +x /startup.sh | ||
CMD ["/bin/bash", "/startup.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
"C:\Program Files\Docker\Docker"\DockerCli.exe -SwitchLinuxEngine | ||
|
||
docker build . -t test-testlib-clang-latest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
"C:\Program Files\Docker\Docker"\DockerCli.exe -SwitchLinuxEngine | ||
|
||
docker run -it test-testlib-clang-latest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
set -e -o pipefail | ||
|
||
git clone https://github.com/MikeMirzayanov/testlib.git | ||
cd testlib | ||
git checkout dev-mikemirzayanov | ||
cd tests | ||
./run.sh v0 23 | ||
cd / | ||
rm -rf testlib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
FROM gcc:7 | ||
RUN apt-get update | ||
RUN apt-get install -y git default-jre valgrind | ||
COPY startup.sh / | ||
WORKDIR / | ||
RUN chmod +x /startup.sh | ||
CMD ["/bin/bash", "/startup.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
"C:\Program Files\Docker\Docker"\DockerCli.exe -SwitchLinuxEngine | ||
|
||
docker build . -t test-testlib-gcc-7 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
"C:\Program Files\Docker\Docker"\DockerCli.exe -SwitchLinuxEngine | ||
|
||
docker run -it test-testlib-gcc-7 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
set -e -o pipefail | ||
|
||
git clone https://github.com/MikeMirzayanov/testlib.git | ||
cd testlib | ||
git checkout dev-mikemirzayanov | ||
cd tests | ||
./run.sh g++ v0 11 | ||
cd / | ||
rm -rf testlib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
FROM gcc:latest | ||
RUN apt-get update | ||
RUN apt-get install -y git default-jre valgrind | ||
COPY startup.sh / | ||
WORKDIR / | ||
RUN chmod +x /startup.sh | ||
CMD ["/bin/bash", "/startup.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
"C:\Program Files\Docker\Docker"\DockerCli.exe -SwitchLinuxEngine | ||
|
||
docker build . -t test-testlib-gcc-latest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
"C:\Program Files\Docker\Docker"\DockerCli.exe -SwitchLinuxEngine | ||
|
||
docker run -it test-testlib-gcc-latest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
set -e -o pipefail | ||
|
||
git clone https://github.com/MikeMirzayanov/testlib.git | ||
cd testlib | ||
git checkout dev-mikemirzayanov | ||
cd tests | ||
./run.sh g++ v0 23 | ||
cd / | ||
rm -rf testlib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import subprocess | ||
import sys | ||
|
||
if len(sys.argv) > 1: | ||
file_path = sys.argv[1] | ||
subprocess.run([file_path]) | ||
else: | ||
print("Use python runner.py <file>") | ||
sys.exit(1) |
Binary file not shown.
Oops, something went wrong.