Skip to content

Commit

Permalink
Initial support for Gitpod (eclipse-jkube#1946)
Browse files Browse the repository at this point in the history
Signed-off-by: Anurag Rajawat <anuragsinghrajawat22@gmail.com>
  • Loading branch information
anurag-rajawat committed Dec 13, 2022
1 parent 09d7c8c commit bb293b3
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@

#
# Copyright (c) 2019 Red Hat, Inc.
# This program and the accompanying materials are made
# available under the terms of the Eclipse Public License 2.0
# which is available at:
#
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
#
# Contributors:
# Red Hat, Inc. - initial API and implementation
#

---
# some useful extensions to have
vscode:
extensions:
- vscjava.vscode-java-pack
- eamodio.gitlens
- redhat.vscode-xml
- donjayamanne.githistory
- asciidoctor.asciidoctor-vscode

# using prebuilds for the container
github:
prebuilds:
# enable for the default branch (defaults to true)
master: true
# enable for all branches in this repo (defaults to false)
branches: false
# enable for pull requests coming from this repo (defaults to true)
pullRequests: true
# enable for pull requests coming from forks (defaults to false)
pullRequestsFromForks: true

tasks:
- name: build all
init: mvn clean install

- name: build all skipTests
command: mvn clean install -Dmaven.test.skip -DskipTests

- name: doc-build kubernetes-maven-plugin
command: cd $GITPOD_REPO_ROOT/kubernetes-maven-plugin/doc && mvn clean -Phtml package -Dasciidoctor.outputHtmlDirectory='/var/www/html'
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Usage:
### 1.11-SNAPSHOT
* Fix #1546: Migrate to JUnit5 testing framework
* Fix #1935: `oc:remote-dev` goal / `ocRemoteDev` task have wrong log prefixes
* Fix #1946: Initial support for Gitpod

### 1.10.1 (2022-11-16)
* Fix #1915: Maven 3.6.3 is still supported
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
[![Twitter](https://img.shields.io/twitter/follow/jkubeio?style=social)](https://twitter.com/jkubeio)


[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/eclipse/jkube)

<p align="center">
<a href="https://www.eclipse.org/jkube/">
<img src="./media/JKube-Logo-final-horizontal-color.png" alt="Eclipse JKube" title="The Eclipse JKube Logo"/>
Expand Down

0 comments on commit bb293b3

Please sign in to comment.