Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:

jobs:

base:
multi-simulator:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -21,3 +21,14 @@ jobs:
echo "${{ secrets.DOCKER_PASS }}" | docker login -u "${{ secrets.DOCKER_USER }}" --password-stdin
docker push terostech/multi-simulator
docker logout

colibri:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: docker build -t terostech/colibri - < colibri.dockerfile
- name: Deploy to hub.docker.com
run: |
echo "${{ secrets.DOCKER_PASS }}" | docker login -u "${{ secrets.DOCKER_USER }}" --password-stdin
docker push terostech/colibri
docker logout
26 changes: 26 additions & 0 deletions colibri.dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
FROM ubuntu

LABEL Mantainers="Carlos Alberto, Ismael Perez, Alfredo Enrique Saez"

ENV HOME /home
WORKDIR /home

RUN apt-get update -qq \
&& DEBIAN_FRONTEND=noninteractive apt-get -y install --no-install-recommends \
apt-utils \
git \
bzip2 \
python3.7 \
python3-pip \
python3-dev \
nodejs \
npm \
wget \
&& pip3 install vunit_hdl
RUN npm install -g n \
&& n stable
RUN mkdir /app \
&& cd /app \
&& git clone https://github.com/TerosTechnology/colibri.git \
&& cd colibri \
&& npm install -g .