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 ab2611a
Showing 1 changed file with 17 additions and 6 deletions.
23 changes: 17 additions & 6 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 @@ -66,10 +66,6 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install `capella-addons` CLI tool
run: |-
pip install .
pip show capella-addons
- name: Install Capella from capelladocker-images
run: |-
docker pull ghcr.io/dsd-dbs/capella-dockerimages/capella/remote:${{ matrix.capella.version }}-selected-dropins-main
Expand Down Expand Up @@ -105,7 +101,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 +112,13 @@ jobs:
addon:
- rest-api
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install `capella-addons` CLI tool
run: |-
pip install -e capella_addons
pip show capella-addons
- 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 ab2611a

Please sign in to comment.