-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BACKLOG-22478: add dependency to legacy-default-components + 8.2.0.0 …
…as parent (#24) * BACKLOG-22478: add dependency to legacy-default-components + 8.2.0.0 as parent * Fixed ci/cd for the repo * BACKLOG-22478: upgrade major version --------- Co-authored-by: Francois G <fgerthoffert@jahia.com>
- Loading branch information
1 parent
b24cd19
commit 2682162
Showing
8 changed files
with
194 additions
and
217 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# This workflow is triggered every time a change is pushed to any branches | ||
# Github actions command reference: https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions | ||
name: On Code Change (PR) | ||
|
||
# The workflow could also be triggered on PRs | ||
on: | ||
pull_request: | ||
types: [opened, reopened, synchronize] | ||
|
||
jobs: | ||
update-signature: | ||
name: Update module signature | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: jahia/jahia-modules-action/update-signature@v2 | ||
with: | ||
nexus_username: ${{ secrets.NEXUS_USERNAME }} | ||
nexus_password: ${{ secrets.NEXUS_PASSWORD }} | ||
nexus_enterprise_releases_url: ${{ secrets.NEXUS_ENTERPRISE_RELEASES_URL }} | ||
|
||
static-analysis: | ||
name: Static Analysis (linting, vulns) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: Jahia/jahia-modules-action/static-analysis@v2 | ||
with: | ||
node_version: 21 | ||
auditci_level: critical | ||
|
||
build: | ||
name: Build Module | ||
needs: update-signature | ||
runs-on: ubuntu-latest | ||
container: | ||
image: jahia/cimg-mvn-cache:ga_cimg_openjdk_11.0.20-node | ||
credentials: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_PASSWORD }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: jahia/jahia-modules-action/build@v2 | ||
with: | ||
nexus_username: ${{ secrets.NEXUS_USERNAME }} | ||
nexus_password: ${{ secrets.NEXUS_PASSWORD }} | ||
|
||
sonar-analysis: | ||
name: Sonar Analysis | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: jahia/jahia-modules-action/sonar-analysis@v2 | ||
with: | ||
primary_release_branch: master | ||
github_pr_id: ${{github.event.number}} | ||
sonar_url: ${{ secrets.SONAR_URL }} | ||
sonar_token: ${{ secrets.SONAR_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# This workflow is triggered every time a change is pushed to any branches | ||
# Github actions command reference: https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions | ||
name: On merge to master | ||
|
||
# The workflow could also be triggered on PRs | ||
on: | ||
push: | ||
branches: | ||
- 'master' | ||
tags-ignore: | ||
- '**' | ||
|
||
jobs: | ||
update-signature: | ||
name: Update module signature | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: jahia/jahia-modules-action/update-signature@v2 | ||
with: | ||
nexus_username: ${{ secrets.NEXUS_USERNAME }} | ||
nexus_password: ${{ secrets.NEXUS_PASSWORD }} | ||
nexus_enterprise_releases_url: ${{ secrets.NEXUS_ENTERPRISE_RELEASES_URL }} | ||
|
||
build: | ||
name: Build Module | ||
needs: update-signature | ||
runs-on: ubuntu-latest | ||
container: | ||
image: jahia/cimg-mvn-cache:ga_cimg_openjdk_11.0.20-node | ||
credentials: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_PASSWORD }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: jahia/jahia-modules-action/build@v2 | ||
with: | ||
nexus_username: ${{ secrets.NEXUS_USERNAME }} | ||
nexus_password: ${{ secrets.NEXUS_PASSWORD }} | ||
|
||
publish: | ||
name: Publish module | ||
needs: build | ||
if: github.ref == 'refs/heads/master' | ||
runs-on: ubuntu-latest | ||
container: | ||
image: jahia/cimg-mvn-cache:ga_cimg_openjdk_11.0.20-node | ||
credentials: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_PASSWORD }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: jahia/jahia-modules-action/publish@v2 | ||
with: | ||
nexus_username: ${{ secrets.NEXUS_USERNAME }} | ||
nexus_password: ${{ secrets.NEXUS_PASSWORD }} |
Oops, something went wrong.