Skip to content

Commit

Permalink
up to v3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
badetitou authored May 21, 2024
1 parent e448c13 commit fc9989e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ COPY verveinej-docker.sh /verveinej-docker.sh
RUN chmod +x /verveinej-docker.sh

# Download VerveineJ
RUN wget -r https://github.com/moosetechnology/VerveineJ/archive/refs/tags/v3.1.1.tar.gz -O verveine.tar.gz
RUN wget -r https://github.com/moosetechnology/VerveineJ/archive/refs/tags/v3.2.0.tar.gz -O verveine.tar.gz
RUN tar -xvf verveine.tar.gz

WORKDIR /src
Expand Down
10 changes: 5 additions & 5 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ docker run --rm -v "/mnt/d/Developpement/git/evol-critics:/src" ghcr.io/evref-bl
parse:
stage: parse
image:
name: ghcr.io/evref-bl/verveinej:v3.1.1
name: ghcr.io/evref-bl/verveinej:v3.2.0
entrypoint: [""]
needs:
script:
- /VerveineJ-3.1.1/verveinej.sh -format json -o model.json -alllocals -anchor assoc -autocp ./repo ./src
- /VerveineJ-3.2.0/verveinej.sh -format json -o model.json -alllocals -anchor assoc -autocp ./repo ./src
artifacts:
paths:
- model.json
Expand All @@ -62,7 +62,7 @@ parse:
## GitHub example
Use the VerveineJ docker image in a GitHub action (example for version `v3.1.1`)
Use the VerveineJ docker image in a GitHub action (example for version `v3.2.0`)

```yml
name: My CI
Expand All @@ -86,10 +86,10 @@ jobs:
- uses: addnab/docker-run-action@v3
with:
registry: ghcr.io
image: ghcr.io/evref-bl/verveinej:v3.1.1
image: ghcr.io/evref-bl/verveinej:v3.2.0
options: -v ${{ github.workspace }}:/src
run: |
cd tests
/VerveineJ-3.1.1/verveinej.sh -format json -o output.json -alllocals -anchor assoc .
/VerveineJ-3.2.0/verveinej.sh -format json -o output.json -alllocals -anchor assoc .
cd ..
```
2 changes: 1 addition & 1 deletion verveinej-docker.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/bash
/VerveineJ-3.1.1/verveinej.sh $@ -autocp /dependency .
/VerveineJ-3.2.0/verveinej.sh $@ -autocp /dependency .

0 comments on commit fc9989e

Please sign in to comment.