Skip to content

Commit 2659048

Browse files
authored
Merge pull request #1763 from mithro/gitpod
Add gitpod support
2 parents ac01048 + e5b7d2f commit 2659048

File tree

3 files changed

+50
-0
lines changed

3 files changed

+50
-0
lines changed

.gitpod.Dockerfile

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
FROM gitpod/workspace-full:latest
2+
3+
USER root
4+
# Install util tools.
5+
RUN apt-get update \
6+
&& apt-get install -y \
7+
apt-utils \
8+
sudo \
9+
git \
10+
less \
11+
libfmt-dev \
12+
libspdlog-dev \
13+
lcov \
14+
binutils \
15+
binutils-gold \
16+
build-essential \
17+
flex \
18+
fontconfig \
19+
libcairo2-dev \
20+
libgtk-3-dev \
21+
libevent-dev \
22+
libfontconfig1-dev \
23+
liblist-moreutils-perl \
24+
libncurses5-dev \
25+
libx11-dev \
26+
libxft-dev \
27+
libxml++2.6-dev \
28+
python-lxml \
29+
qt5-default \
30+
wget \
31+
&& apt-get clean \
32+
&& rm -rf /var/lib/apt/lists/*
33+
34+
35+
# Give back control
36+
USER root
37+
38+
# Cleaning
39+
RUN apt-get clean

.gitpod.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
image:
2+
file: .gitpod.Dockerfile
3+
tasks:
4+
- command: pyenv global 3.7.4 &&
5+
chmod +x envconfig.sh
6+
7+
vscode:
8+
extensions:
9+
- [email protected]:qLtqI3aUcEBX9EpuK0ZCyw==
10+
- [email protected]:Pq/tmf2WN3SanVzB4xZc1g==

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Verilog to Routing (VTR)
2+
[![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-Ready--to--Code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/Loksu/vtr-verilog-to-routing)
23
[![Build Status](https://github.com/verilog-to-routing/vtr-verilog-to-routing/workflows/Test/badge.svg)](https://github.com/verilog-to-routing/vtr-verilog-to-routing/actions?query=workflow%3ATest) [![Documentation Status](https://readthedocs.org/projects/vtr/badge/?version=latest)](http://docs.verilogtorouting.org/en/latest/)
34

45
## Introduction

0 commit comments

Comments
 (0)