diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 63b6d701..30ac6e3a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -24,7 +24,7 @@ jobs: - name: Build run: | dotnet build --no-restore '-p:SkipWebApp=true;SkipTranscoder=true' -p:CopyLocalLockFileAssemblies=true - cp ./Kyoo.Abstractions/bin/Debug/net5.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll ./tests/Kyoo.Tests/bin/Debug/net5.0/ + cp ./src/Kyoo.Abstractions/bin/Debug/net5.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll ./tests/Kyoo.Tests/bin/Debug/net5.0/ - name: Test run: dotnet test --no-build '-p:CollectCoverage=true;CoverletOutputFormat=opencover' env: @@ -33,7 +33,7 @@ jobs: POSTGRES_PASSWORD: postgres - name: Sanitize coverage output if: ${{ always() }} - run: sed -i "s'$(pwd)'.'" tests/Kyoo.Tests/coverage.opencover.xml + run: sed -i "s'$(pwd)'.'" tests/Kyoo.Tests/coverage.opencover.xml - name: Upload coverage report if: ${{ always() }} uses: actions/upload-artifact@v2 diff --git a/AUTHORS.md b/AUTHORS.md new file mode 100644 index 00000000..b7f88d9d --- /dev/null +++ b/AUTHORS.md @@ -0,0 +1,4 @@ +# Authors +Alphabetical order by first name. + +* Zoe Roux ([@AnonymusRaccoon](http://github.com/AnonymusRaccoon)) diff --git a/Dockerfile b/Dockerfile index 9158d2a0..051c3d63 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,12 @@ FROM gcc:latest as transcoder RUN apt-get update && apt-get install -y cmake make libavutil-dev libavcodec-dev libavformat-dev WORKDIR /transcoder -COPY Kyoo.Transcoder . +COPY src/Kyoo.Transcoder . RUN cmake . && make -j FROM node:alpine as webapp WORKDIR /webapp -COPY Kyoo.WebApp . +COPY src/Kyoo.WebApp . WORKDIR /webapp/Front RUN npm install RUN npm run build -- --prod