From f8da25a6f3895d34076eb6c39741911cadd3d594 Mon Sep 17 00:00:00 2001 From: Kwoth Date: Mon, 5 Aug 2024 12:24:35 +0000 Subject: [PATCH] fix: fixed docker build dev: allow qodana to fail --- .gitlab-ci.yml | 1 + Dockerfile | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9448a3f25..0be2fa736 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -168,6 +168,7 @@ docker-build: qodana: stage: test + allow_failure: true image: name: jetbrains/qodana-dotnet:latest entrypoint: [""] diff --git a/Dockerfile b/Dockerfile index 346c5fdbc..941e4e22a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,6 @@ COPY src/NadekoBot/*.csproj src/NadekoBot/ COPY src/NadekoBot.Coordinator/*.csproj src/NadekoBot.Coordinator/ COPY src/NadekoBot.Generators/*.csproj src/NadekoBot.Generators/ COPY src/NadekoBot.Voice/*.csproj src/NadekoBot.Voice/ -COPY NuGet.Config ./ # Restore the dependencies for the NadekoBot project RUN dotnet restore src/NadekoBot/