Skip to content

Commit

Permalink
chore: convert extra checks to github action (#5333)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinWitt committed Jul 11, 2023
1 parent 5d6a2d3 commit 537faa9
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 110 deletions.
83 changes: 79 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ jobs:
- uses: actions/setup-python@bd6b4b6205c4dbad673328db7b31b7fab9e241c0 # v4.6.1
with:
python-version: 3.11

- name: Get date for cache # see https://github.com/actions/cache README
id: get-date
run: echo "date=$(/bin/date -u "+%Y%m%d")" >> $GITHUB_OUTPUT
Expand All @@ -132,11 +131,87 @@ jobs:
path: ~/.m2/repository
key: ${{ runner.os }}-${{ steps.get-date.outputs.date }}-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-maven-

- name: Use silent log config
run: mv chore/logback.xml src/test/resources/
- name: Run extra checks
run: ./chore/ci-extra.sh
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
with:
fetch-depth: 0
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y python3-pip
pip3 install --user CommonMark==0.9.1 requests pygithub
- name: Verify and Site Maven goals
run: mvn verify license:check site -DskipTests -DadditionalJOption=-Xdoclint:syntax,-missing -Dscan
- name: Install spoon-pom
working-directory: spoon-pom
run: mvn install -DskipTests

- name: Checkstyle in src/tests
run: mvn -q checkstyle:checkstyle -Pcheckstyle-test

- name: Check documentation links
run: python3 ./chore/check-links-in-doc.py

- name: Analyze dependencies through DepClean in spoon-core
run: mvn -q depclean:depclean

- name: Spoon-decompiler
working-directory: spoon-decompiler
run: |
mvn -q versions:use-latest-versions -DallowSnapshots=true -Dincludes=fr.inria.gforge.spoon
mvn -q versions:update-parent -DallowSnapshots=true
git diff
mvn -q test
mvn -q checkstyle:checkstyle license:check
mvn -q depclean:depclean
- name: Spoon-control-flow
working-directory: spoon-control-flow
run: |
mvn -q versions:use-latest-versions -DallowSnapshots=true -Dincludes=fr.inria.gforge.spoon
mvn -q versions:update-parent -DallowSnapshots=true
git diff
mvn -q test
mvn -q checkstyle:checkstyle license:check
# spoon dataflow
- name: Cache downloaded file
uses: actions/cache@v2
with:
path: spoon-dataflow/z3-4.8.4.d6df51951f4c-x64-ubuntu-14.04.zip
key: ${{ runner.os }}-z3-4.8.4.d6df51951f4c-x64-ubuntu-14.04.zip
restore-keys: |
${{ runner.os }}-z3-4.8.4.d6df51951f4c-x64-ubuntu-14.04.zip
- name: Spoon-dataflow
working-directory: spoon-dataflow
run: |
wget https://projects.ow2.org/download/spoon/WebHome/z3-4.8.4.d6df51951f4c-x64-ubuntu-14.04.zip
unzip z3-4.8.4.d6df51951f4c-x64-ubuntu-14.04.zip
export LD_LIBRARY_PATH=./z3-4.8.4.d6df51951f4c-x64-ubuntu-14.04/bin
./gradlew build
- name: Spoon-visualisation
working-directory: spoon-visualisation
run: |
mvn -q versions:use-latest-versions -DallowSnapshots=true -Dincludes=fr.inria.gforge.spoon
mvn -q versions:update-parent -DallowSnapshots=true
git diff
mvn -q test
mvn -q depclean:depclean
- name: Spoon-smpl
working-directory: spoon-smpl
run: |
mvn -q versions:use-latest-versions -DallowSnapshots=true -Dincludes=fr.inria.gforge.spoon
mvn -q versions:update-parent -DallowSnapshots=true
git diff
mvn -q -Djava.src.version=11 test
mvn -q checkstyle:checkstyle license:check
mvn -q depclean:depclean
- name: Trigger extra tasks
if: github.repository == 'INRIA/spoon' && github.event_name == 'pull_request'
run: |
curl https://raw.githubusercontent.com/SpoonLabs/spoon-ci-external/master/spoon-pull-request.sh | bash
- name: Run Javadoc quality check
run: ./chore/check-javadoc-regressions.py COMPARE_WITH_MASTER
reproducible-builds:
Expand Down
106 changes: 0 additions & 106 deletions chore/ci-extra.sh

This file was deleted.

0 comments on commit 537faa9

Please sign in to comment.