Skip to content

Commit 0248cbb

Browse files
authored
Merge pull request #31 from sdamghan/origin_remote_gitpod
Origin remote gitpod
2 parents 2659048 + 3001ba5 commit 0248cbb

File tree

3 files changed

+24
-5
lines changed

3 files changed

+24
-5
lines changed

.gitpod.Dockerfile

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
FROM gitpod/workspace-full:latest
22

3+
# get the permission
34
USER root
5+
46
# Install util tools.
57
RUN apt-get update \
68
&& apt-get install -y \
@@ -31,9 +33,14 @@ RUN apt-get update \
3133
&& apt-get clean \
3234
&& rm -rf /var/lib/apt/lists/*
3335

36+
# set out workspace
37+
ENV VTR_ROOT=/workspace/vtr-verilog-to-routing
38+
WORKDIR ${VTR_ROOT}
39+
40+
CMD [ "/bin/bash" ]
3441

3542
# Give back control
3643
USER root
3744

3845
# Cleaning
39-
RUN apt-get clean
46+
RUN apt-get clean

.gitpod.yml

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,20 @@
11
image:
22
file: .gitpod.Dockerfile
3-
tasks:
4-
- command: pyenv global 3.7.4 &&
5-
chmod +x envconfig.sh
3+
4+
github:
5+
prebuilds:
6+
# enable for the master/default branch (defaults to true)
7+
master: true
8+
# enable for all branches in this repo (defaults to false)
9+
branches: true
10+
# enable for pull requests coming from this repo (defaults to true)
11+
pullRequests: true
12+
# enable for pull requests coming from forks (defaults to false)
13+
pullRequestsFromForks: true
14+
# add a "Review in Gitpod" check to pull requests (defaults to true)
15+
addCheck: true
16+
# add a label once the prebuild is ready to pull requests (defaults to false)
17+
addLabel: prebuilt-in-gitpod
618

719
vscode:
820
extensions:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +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)
2+
[![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-Ready--to--Code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/verilog-to-routing/vtr-verilog-to-routing.git)
33
[![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/)
44

55
## Introduction

0 commit comments

Comments
 (0)