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

This commit is contained in:
Timothy Schenk 2023-11-15 14:25:09 +01:00
parent be8299d2db
commit dc885c614d

View file

@ -4,7 +4,7 @@ on: [ push ]
env:
# 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
ARTIFACT: webHelpWIKI2-all.zip
# Writerside docker image version
@ -21,21 +21,6 @@ jobs:
id: sanitize
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:
runs-on: ubuntu-latest
container: registry.jetbrains.team/p/writerside/builder/writerside-builder:${{env.DOCKER_VERSION}}
@ -72,6 +57,21 @@ jobs:
path: artifacts/${{ env.ALGOLIA_ARTIFACT }}
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:
needs: build
runs-on: ubuntu-latest