Skip to content

Commit

Permalink
Update maven-build.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushishu committed Sep 26, 2023
1 parent a21f1e2 commit 4b2c15a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/maven-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
docker load --input /tmp/${{ vars.ODL_BASE_IMAGE_NAME }}.tar
- name: Maven Build
run: |
docker run ${{ vars.ODL_BASE_IMAGE_NAME }}:latest bash -c 'git clone "https://github.com/opendaylight/aaa.git" && cd /aaa && mvn clean install'
docker run ${{ vars.ODL_BASE_IMAGE_NAME }}:latest bash -c 'git clone "https://github.com/opendaylight/aaa.git" && cd /aaa && mvn clean deploy'
yangtools:
runs-on: ubuntu-latest
Expand All @@ -59,7 +59,7 @@ jobs:
run: |
docker load --input /tmp/${{ vars.ODL_BASE_IMAGE_NAME }}.tar
- name: Maven Build
run: docker run ${{ vars.ODL_BASE_IMAGE_NAME }}:latest bash -c 'git clone "https://github.com/opendaylight/yangtools.git" && cd /yangtools && mvn clean install'
run: docker run ${{ vars.ODL_BASE_IMAGE_NAME }}:latest bash -c 'git clone "https://github.com/opendaylight/yangtools.git" && cd /yangtools && mvn clean deploy'

integration-distribution:
runs-on: ubuntu-latest
Expand All @@ -76,7 +76,7 @@ jobs:
run: |
docker load --input /tmp/${{ vars.ODL_BASE_IMAGE_NAME }}.tar
- name: Maven Build
run: docker run ${{ vars.ODL_BASE_IMAGE_NAME }}:latest bash -c 'git clone "https://git.opendaylight.org/gerrit/integration/distribution" && cd /distribution && mvn clean install'
run: docker run ${{ vars.ODL_BASE_IMAGE_NAME }}:latest bash -c 'git clone "https://git.opendaylight.org/gerrit/integration/distribution" && cd /distribution && mvn clean deploy'

serviceutils:
runs-on: ubuntu-latest
Expand All @@ -93,7 +93,7 @@ jobs:
run: |
docker load --input /tmp/${{ vars.ODL_BASE_IMAGE_NAME }}.tar
- name: Maven Build
run: docker run ${{ vars.ODL_BASE_IMAGE_NAME }}:latest bash -c 'git clone "https://github.com/opendaylight/serviceutils.git" && cd /serviceutils && mvn clean install'
run: docker run ${{ vars.ODL_BASE_IMAGE_NAME }}:latest bash -c 'git clone "https://github.com/opendaylight/serviceutils.git" && cd /serviceutils && mvn clean deploy'

odlparent:
runs-on: ubuntu-latest
Expand All @@ -111,7 +111,7 @@ jobs:
docker load --input /tmp/${{ vars.ODL_BASE_IMAGE_NAME }}.tar
- name: Maven Build
run: |
docker run ${{ vars.ODL_BASE_IMAGE_NAME }}:latest bash -c 'git clone "https://github.com/opendaylight/odlparent.git" && cd /odlparent && mvn clean install'
docker run ${{ vars.ODL_BASE_IMAGE_NAME }}:latest bash -c 'git clone "https://github.com/opendaylight/odlparent.git" && cd /odlparent && mvn clean deploy'
openflowplugin:
runs-on: ubuntu-latest
Expand All @@ -129,7 +129,7 @@ jobs:
docker load --input /tmp/${{ vars.ODL_BASE_IMAGE_NAME }}.tar
- name: Maven Build
run: |
docker run ${{ vars.ODL_BASE_IMAGE_NAME }}:latest bash -c 'git clone "https://github.com/opendaylight/openflowplugin.git" && cd /openflowplugin && mvn clean install'
docker run ${{ vars.ODL_BASE_IMAGE_NAME }}:latest bash -c 'git clone "https://github.com/opendaylight/openflowplugin.git" && cd /openflowplugin && mvn clean deploy'
ovsdb:
runs-on: ubuntu-latest
Expand All @@ -147,4 +147,4 @@ jobs:
docker load --input /tmp/${{ vars.ODL_BASE_IMAGE_NAME }}.tar
- name: Maven Build
run: |
docker run ${{ vars.ODL_BASE_IMAGE_NAME }}:latest bash -c 'git clone "https://github.com/opendaylight/ovsdb.git" && cd /ovsdb && mvn clean install'
docker run ${{ vars.ODL_BASE_IMAGE_NAME }}:latest bash -c 'git clone "https://github.com/opendaylight/ovsdb.git" && cd /ovsdb && mvn clean deploy'

0 comments on commit 4b2c15a

Please sign in to comment.