Skip to content
This repository was archived by the owner on Oct 18, 2024. It is now read-only.

Commit deae398

Browse files
committed
Start CI with Azure DevOps Pipelines.
1 parent 654bc27 commit deae398

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

azure-pipelines.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Maven
2+
# Build your Java project and run tests with Apache Maven.
3+
# Add steps that analyze code, save build artifacts, deploy, and more:
4+
# https://docs.microsoft.com/azure/devops/pipelines/languages/java
5+
6+
jobs:
7+
- job: Build
8+
timeoutInMinutes: 0
9+
10+
variables:
11+
- group: che-theia
12+
- name: organization
13+
value: eclipse
14+
- name: prefix
15+
value: che
16+
- name: tag
17+
value: next
18+
19+
pool:
20+
vmImage: 'Ubuntu-16.04'
21+
22+
steps:
23+
- script: |
24+
cd dockerfiles/theia-dev
25+
./build.sh --build-arg:GITHUB_TOKEN=$(github_token) --organization:$(organization) --tag:$(tag) --prefix:$(prefix)
26+
displayName: Building theia-dev
27+
28+
- script: |
29+
export
30+
cd dockerfiles/theia
31+
./build.sh --build-args:GITHUB_TOKEN=$(github_token),THEIA_VERSION=master --tag:$(tag) --prefix:$(prefix) --branch:master --git-ref:refs\\/heads\\/master --organization:$(organization)
32+
displayName: Building Theia

0 commit comments

Comments
 (0)