-
Notifications
You must be signed in to change notification settings - Fork 2
42 lines (40 loc) · 1.19 KB
/
linux.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: CI with Linux
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
processing:
- tag: "processing-1292-4.2"
semver: "1292.0.0"
- tag: "processing-1272-4.0a3"
semver: "1272.0.0"
- tag: "processing-0270-3.5.4"
semver: "270.0.0"
- tag: "processing-0232-3.0a5"
semver: "232.0.0"
- tag: "processing-0227-2.2.1"
semver: "227.0.0"
steps:
- uses: actions/checkout@v2
- run: node --version
- uses: ./
id: setup-processing
with:
tag: ${{matrix.processing.tag}}
- run: pwd
- run: echo $PATH
- run: echo "${{steps.setup-processing.outputs.install-dir}}"
- run: ls -lah /opt/hostedtoolcache/
- run: ls -lah /opt/hostedtoolcache/processing
- run: ls -lah /opt/hostedtoolcache/processing/${{matrix.processing.semver}}
- run: ls -lah /opt/hostedtoolcache/processing/${{matrix.processing.semver}}/x64
- run: which processing
- run: which processing-java
- run: processing-java --help
- run: processing --help