-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update workflow example to glsp 2.2.1 * Update node-json-theia to 2.2.1 * Update node-json-vscode to 2.2.1 * Update java-emf-theia to 2.2.1 * Update java-emf-eclipse to 2.2.1 * Update ci build
- Loading branch information
Showing
117 changed files
with
14,713 additions
and
15,993 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
name: CI | ||
|
||
concurrency: | ||
group: ci-${{ github.ref }} | ||
cancel-in-progress: true | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build-workflow-example: | ||
name: Build workflow example | ||
timeout-minutes: 60 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/[email protected] | ||
- name: Set up Node.js | ||
uses: actions/[email protected] | ||
with: | ||
node-version: '18.x' | ||
- name: Build | ||
env: | ||
NODE_OPTIONS: --max_old_space_size=4096 | ||
run: yarn build:workflow | ||
|
||
build-node-json-theia: | ||
name: Build node-json-theia | ||
timeout-minutes: 60 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/[email protected] | ||
- name: Set up Node.js | ||
uses: actions/[email protected] | ||
with: | ||
node-version: '18.x' | ||
- name: Build | ||
env: | ||
NODE_OPTIONS: --max_old_space_size=4096 | ||
run: yarn build:node-json-theia | ||
|
||
build-node-json-vscode: | ||
name: Build node-json-vscode | ||
timeout-minutes: 60 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/[email protected] | ||
- name: Set up Node.js | ||
uses: actions/[email protected] | ||
with: | ||
node-version: '18.x' | ||
- name: Build | ||
run: yarn build:node-json-vscode | ||
|
||
build-java-emf-theia: | ||
name: Build java-emf-theia | ||
timeout-minutes: 60 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/[email protected] | ||
- name: Set up Node.js | ||
uses: actions/[email protected] | ||
- name: Set up JDK | ||
uses: actions/[email protected] | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
- name: Build | ||
env: | ||
NODE_OPTIONS: --max_old_space_size=4096 | ||
run: yarn build:java-emf-theia | ||
|
||
build-java-emf-eclipse: | ||
name: Build java-emf-eclipse | ||
timeout-minutes: 60 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/[email protected] | ||
- name: Set up Node.js | ||
uses: actions/[email protected] | ||
- name: Set up JDK | ||
uses: actions/[email protected] | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
- name: Build | ||
run: yarn build:java-emf-eclipse |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.