ci: something worked?
Some checks failed
Build, Package and Push Images / preprocess (push) Successful in 4s
Build, Package and Push Images / build (push) Successful in 32s
Build, Package and Push Images / sbom-scan (push) Successful in 33s
Build, Package and Push Images / sonarqube (push) Successful in 1m37s
Build, Package and Push Images / container-build (push) Successful in 1m51s
Build, Package and Push Images / docs (push) Failing after 3m1s
Build, Package and Push Images / container-sbom-scan (push) Successful in 33s
Some checks failed
Build, Package and Push Images / preprocess (push) Successful in 4s
Build, Package and Push Images / build (push) Successful in 32s
Build, Package and Push Images / sbom-scan (push) Successful in 33s
Build, Package and Push Images / sonarqube (push) Successful in 1m37s
Build, Package and Push Images / container-build (push) Successful in 1m51s
Build, Package and Push Images / docs (push) Failing after 3m1s
Build, Package and Push Images / container-sbom-scan (push) Successful in 33s
This commit is contained in:
parent
be8299d2db
commit
dc885c614d
1 changed files with 16 additions and 16 deletions
|
@ -4,7 +4,7 @@ on: [ push ]
|
||||||
|
|
||||||
env:
|
env:
|
||||||
# Name of module and id separated by a slash
|
# Name of module and id separated by a slash
|
||||||
INSTANCE: Continuity/wiki
|
INSTANCE: Wiki/wiki
|
||||||
# Replace HI with the ID of the instance in capital letters
|
# Replace HI with the ID of the instance in capital letters
|
||||||
ARTIFACT: webHelpWIKI2-all.zip
|
ARTIFACT: webHelpWIKI2-all.zip
|
||||||
# Writerside docker image version
|
# Writerside docker image version
|
||||||
|
@ -21,21 +21,6 @@ jobs:
|
||||||
id: sanitize
|
id: sanitize
|
||||||
run: echo "::set-output name=sanitized_branch_name::$(echo ${{ github.ref_name }} | sed 's/\//-/g')"
|
run: echo "::set-output name=sanitized_branch_name::$(echo ${{ github.ref_name }} | sed 's/\//-/g')"
|
||||||
|
|
||||||
build:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
- name: Setup dotnet
|
|
||||||
uses: https://github.com/actions/setup-dotnet@v3
|
|
||||||
with:
|
|
||||||
dotnet-version: 8.0
|
|
||||||
- name: Install dependencies
|
|
||||||
run: dotnet restore
|
|
||||||
- name: Build
|
|
||||||
run: |
|
|
||||||
dotnet build Server -c Release
|
|
||||||
# dotnet test Server.Tests -c Release
|
|
||||||
|
|
||||||
docs:
|
docs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: registry.jetbrains.team/p/writerside/builder/writerside-builder:${{env.DOCKER_VERSION}}
|
container: registry.jetbrains.team/p/writerside/builder/writerside-builder:${{env.DOCKER_VERSION}}
|
||||||
|
@ -72,6 +57,21 @@ jobs:
|
||||||
path: artifacts/${{ env.ALGOLIA_ARTIFACT }}
|
path: artifacts/${{ env.ALGOLIA_ARTIFACT }}
|
||||||
retention-days: 14
|
retention-days: 14
|
||||||
|
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Setup dotnet
|
||||||
|
uses: https://github.com/actions/setup-dotnet@v3
|
||||||
|
with:
|
||||||
|
dotnet-version: 8.0
|
||||||
|
- name: Install dependencies
|
||||||
|
run: dotnet restore
|
||||||
|
- name: Build
|
||||||
|
run: |
|
||||||
|
dotnet build Server -c Release
|
||||||
|
# dotnet test Server.Tests -c Release
|
||||||
|
|
||||||
sonarqube:
|
sonarqube:
|
||||||
needs: build
|
needs: build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
Loading…
Reference in a new issue