ci: remove unnecessary actions
Some checks failed
Test if Server can be built / build-server (push) Failing after 1s
Test if Server can be built / sonarqube (push) Has been skipped

This commit is contained in:
Timothy Schenk 2023-11-01 18:45:14 +01:00
parent 5a80c9b99c
commit 5ce3895819

View file

@ -14,18 +14,10 @@ jobs:
run: |
dotnet build Continuity -c Release
# dotnet test Continuity.Tests -c Release
export SONAR_TOKEN=${{secrets.SONAR_TOKEN}}
export SONAR_PROJECT_KEY=${{secrets.SONAR_PROJECT_KEY}}
export SONAR_HOST_URL=${{secrets.SONAR_HOST_URL}}
export IS_LOCAL_BUILD=${{secrets.IS_LOCAL_BUILD}}
export SUPPORTS_DOCKER=${{secrets.SUPPORTS_DOCKER}}
apt-get update
apt-get install --yes openjdk-11-jre
chmod +x ./build.sh
./build.sh --verbose --root .
sonarqube:
needs: build-server
runs-on: ubuntu-latest
if: gitea.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v3
- name: Setup dotnet