Skip to content

Commit c4d1139

Browse files
committed
Update CI build
Signed-off-by: Ben Sherman <bentshermann@gmail.com>
1 parent c41cc6f commit c4d1139

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,6 @@ jobs:
2121
fetch-depth: 1
2222

2323
- name: Compile
24-
run: ./gradlew build
24+
run: |
25+
git clone --depth 1 https://github.com/nextflow-io/nextflow ../nextflow
26+
make

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
compile:
2+
(cd ../nextflow ; ./gradlew :nf-lang:publishToMavenLocal)
23
./gradlew build
34

45
test:

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,10 @@ The language server exposes a set of configuration settings that can be controll
2626
To build from the command line:
2727

2828
```sh
29-
# build nf-lang module from Nextflow
29+
# clone Nextflow repository
3030
git clone https://github.com/nextflow-io/nextflow ../nextflow
31-
cd ../nextflow
32-
./gradlew publishToMavenLocal
33-
cd -
3431

35-
# build language server
32+
# build language server (with nf-lang module)
3633
make
3734
```
3835

0 commit comments

Comments
 (0)