mirror of
https://github.com/enso-org/enso.git
synced 2024-11-27 16:16:21 +03:00
ca9125f8e9
Let's _untie_ the [VSCode Enso extension](https://marketplace.visualstudio.com/items?itemName=Enso.enso4vscode) from `sbt` commands. Let's **open any Enso file in the editor** and then use _F5_ or _Ctrl-F5_ to execute it. Let the user choose which `bin/enso` script to use for execution completely skipping the need for `sbt`.
63 lines
1.9 KiB
YAML
63 lines
1.9 KiB
YAML
name: Enso Language Support for VSCode, IGV, NetBeans
|
|
|
|
on:
|
|
push:
|
|
branches: [develop]
|
|
pull_request:
|
|
branches: [develop]
|
|
paths:
|
|
- "tools/enso4igv/**/*"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-20.04
|
|
strategy:
|
|
matrix:
|
|
java: ["11"]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Java
|
|
uses: actions/setup-java@v2
|
|
with:
|
|
distribution: "zulu"
|
|
java-version: ${{ matrix.java }}
|
|
cache: maven
|
|
|
|
- name: Find out pom & micro versions
|
|
working-directory: tools/enso4igv
|
|
run: |
|
|
# Why do we subtract a number? Read versioning policy!
|
|
# https://github.com/enso-org/enso/pull/7861#discussion_r1333133490
|
|
echo "POM_VERSION=`mvn -q -DforceStdout help:evaluate -Dexpression=project.version | cut -f1 -d -`" >> "$GITHUB_ENV"
|
|
echo "MICRO_VERSION=`expr $GITHUB_RUN_NUMBER - 2250`" >> "$GITHUB_ENV"
|
|
|
|
- name: Update project version
|
|
working-directory: tools/enso4igv
|
|
run: |
|
|
echo "Setting version to $POM_VERSION.$MICRO_VERSION"
|
|
mvn versions:set -DnewVersion="$POM_VERSION.$MICRO_VERSION"
|
|
|
|
- name: Build with Maven
|
|
run: mvn -B -Pvsix package --file tools/enso4igv/pom.xml
|
|
- name: Archive NBM file
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: Enso IGV Plugin
|
|
path: tools/enso4igv/target/*.nbm
|
|
|
|
- name: Install Node.js modules
|
|
run: mvn -B -Pvsix npm:install --file tools/enso4igv/pom.xml
|
|
|
|
- name: Update package.json version
|
|
run: mvn -B -Pvsix npm:exec@version --file tools/enso4igv/pom.xml
|
|
|
|
- name: Build VSCode Extension
|
|
run: mvn -B -Pvsix npm:run@vsix --file tools/enso4igv/pom.xml
|
|
|
|
- name: Archive VSCode extension
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: VSCode Extension
|
|
path: tools/enso4igv/*.vsix
|