Skip to content

Commit

Permalink
ci: Checkout the repo to build the addon
Browse files Browse the repository at this point in the history
  • Loading branch information
jamilraichouni committed Oct 23, 2024
1 parent 169cac7 commit ea0c5dd
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/build-addon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
# name: "jdk-17.0.11+9"
# url: "https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.11%2B9/OpenJDK17U-jdk_x64_linux_hotspot_17.0.11_9.tar.gz"
name: Setup build environment for Capella ${{ matrix.capella.version }}
# needs: [quality]
needs: [quality]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
rm *.tar.gz
build-addons:
name: Build addons
needs: [setup-build-environment]
needs: [quality, setup-build-environment]
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -116,10 +116,13 @@ jobs:
addon:
- rest-api
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build `.classpath` file
run: |-
cd ${{ matrix.addon }}
python -m capella_addons build-classpath \
python capella_addons/__main__.py build-classpath \
--java-execution-environment=JavaSE-17 \
$(find . -type f -name "Main.java") \
/tmp/capella_${{ matrix.capella_version }}
Expand All @@ -128,7 +131,7 @@ jobs:
run: |-
cd ${{ matrix.addon }}
rm -rf target
python -m capella_addons -v \
python capella_addons/__main__.py -v \
build-workspace \
--java-execution-environment=JavaSE-17 \
/usr/lib/jvm/jdk-17.0.6+10 \
Expand Down

0 comments on commit ea0c5dd

Please sign in to comment.