Skip to content

Commit

Permalink
installing freshly built procyon in GH
Browse files Browse the repository at this point in the history
  • Loading branch information
judovana committed Nov 21, 2023
1 parent a633dd3 commit e5b817a
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/maven.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,28 @@ jobs:
distribution: 'adopt'
cache: maven

- name: clone and build procyon devel we depeond on Linux
if: matrix.os == 'ubuntu-latest'
run: |
set -x
git clone https://github.com/mstrobel/procyon.git
cd procyon
git checkout develop
sed "s/6.9/7.3/g" -i gradle/wrapper/gradle-wrapper.properties
sed "s/.*<tt>.*//g" -i Procyon.Reflection/src/main/java/com/strobel/reflection/emit/CodeStream.java
./gradlew install
shell: bash

- name: clone and build procyon devel we depeond on Windows
if: matrix.os == 'windows-latest'
run: |
@echo on
git clone https://github.com/mstrobel/procyon.git
cd procyon
git checkout develop
./gradlew.bat install
shell: cmd

- name: Build JRD with Maven
run: mvn --batch-mode --update-snapshots clean install

Expand Down

0 comments on commit e5b817a

Please sign in to comment.