-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat/Fix (#31): Re-add ci-pipline within the new data-structure of th…
…e repo
- Loading branch information
1 parent
f415f42
commit b5636ee
Showing
7 changed files
with
198 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
from ubuntu:22.04 | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
RUN apt-get update && \ | ||
apt-get upgrade -y && \ | ||
apt-get update && \ | ||
apt-get install -y \ | ||
gcc \ | ||
g++ \ | ||
make \ | ||
qt5-qmake \ | ||
bison \ | ||
flex \ | ||
xxd \ | ||
opencl-headers \ | ||
ocl-icd-opencl-dev \ | ||
libssl-dev \ | ||
libcrypto++-dev \ | ||
libboost1.74-dev \ | ||
uuid-dev \ | ||
libsqlite3-dev \ | ||
protobuf-compiler \ | ||
nano \ | ||
git \ | ||
ssh |
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,8 @@ | ||
Docker-image for the build-tests within the ci-pipeline | ||
|
||
Build: | ||
|
||
``` | ||
docker build -t kitsudaiki/ci-build:0.1.0 . | ||
docker push kitsudaiki/ci-build:0.1.0 | ||
``` |
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 |
---|---|---|
|
@@ -3,9 +3,4 @@ CONFIG += ordered | |
|
||
SUBDIRS = src | ||
|
||
run_tests { | ||
SUBDIRS += tests | ||
|
||
tests.depends = src | ||
} | ||
|
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 |
---|---|---|
|
@@ -3,9 +3,4 @@ CONFIG += ordered | |
|
||
SUBDIRS = src | ||
|
||
run_tests { | ||
SUBDIRS += tests | ||
|
||
tests.depends = src | ||
} | ||
|
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