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 955eeed
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 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 All @@ -68,7 +68,7 @@ jobs:
python-version: "3.12"
- name: Install `capella-addons` CLI tool
run: |-
pip install .
pip install ../capella-addons
pip show capella-addons
- name: Install Capella from capelladocker-images
run: |-
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,6 +116,9 @@ jobs:
addon:
- rest-api
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build `.classpath` file
run: |-
cd ${{ matrix.addon }}
Expand All @@ -133,3 +136,11 @@ jobs:
--java-execution-environment=JavaSE-17 \
/usr/lib/jvm/jdk-17.0.6+10 \
/tmp/jdtls
- name: Package addon
run: |-
cd ${{ matrix.addon }}
python -m capella_addons -v \
package \
/usr/lib/jvm/${{ matrix.capella.jdk.name }} \
/usr/lib/jvm/jdk-17.0.6+10 \
/tmp/jdtls

0 comments on commit 955eeed

Please sign in to comment.