Skip to content

Commit

Permalink
Update ci build
Browse files Browse the repository at this point in the history
  • Loading branch information
tortmayr committed Jul 23, 2024
1 parent 657c227 commit 1504233
Show file tree
Hide file tree
Showing 6 changed files with 132 additions and 342 deletions.
96 changes: 96 additions & 0 deletions .github/workflows/ci.yml
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
Loading

0 comments on commit 1504233

Please sign in to comment.