From b2846ca6d6376cdccd0886809dc4521723973f87 Mon Sep 17 00:00:00 2001 From: Farzad Sadeghi Date: Wed, 6 Jan 2021 04:39:53 +0000 Subject: Fully automate dev setup with Gitpod This commit implements a fully-automated development setup using Gitpod.io, an online IDE for GitLab, GitHub, and Bitbucket that enables Dev-Environments-As-Code. This makes it easy for anyone to get a ready-to-code workspace for any branch, issue or pull request almost instantly with a single click. --- .gitpod.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .gitpod.yml (limited to '.gitpod.yml') diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..3a69a10 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,5 @@ +image: + file: .gitpod.Dockerfile + +tasks: + - init: make -- cgit v1.2.3 From f722eb61802e73542b40e79665a6b42ea1e01631 Mon Sep 17 00:00:00 2001 From: Farzad Sadeghi Date: Wed, 6 Jan 2021 14:00:14 +0000 Subject: update for gitpod --- .gitpod.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.gitpod.yml') diff --git a/.gitpod.yml b/.gitpod.yml index 3a69a10..c5f62f8 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -2,4 +2,4 @@ image: file: .gitpod.Dockerfile tasks: - - init: make + - init: make CXX=clang-9 LLVM_CONF=llvm-config-9 -- cgit v1.2.3