Skip to content

Commit

Permalink
Merge pull request #106 from eosnetworkfoundation/yarkin/fix_ci
Browse files Browse the repository at this point in the history
Setup CI
  • Loading branch information
yarkinwho authored Dec 14, 2023
2 parents e91481b + 57673bf commit a582afe
Show file tree
Hide file tree
Showing 12 changed files with 300 additions and 563 deletions.
3 changes: 3 additions & 0 deletions .cicd/defaults.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{

}
5 changes: 5 additions & 0 deletions .cicd/platforms.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"ubuntu22": {
"dockerfile": ".cicd/platforms/ubuntu22.Dockerfile"
}
}
11 changes: 11 additions & 0 deletions .cicd/platforms/ubuntu22.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM ubuntu:jammy
ENV TZ="America/New_York"
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get upgrade -y && \
apt-get install -y build-essential \
cmake \
gcc-11 \
g++-11 \
git \
python3-pip
RUN pip install -v "conan==1.60.2"
Loading

0 comments on commit a582afe

Please sign in to comment.