CI: Trying to fix the CI after the move to the src folder

This commit is contained in:
Zoe Roux 2021-09-08 21:35:38 +02:00
parent 56bfa4d795
commit de6a2b5d72
3 changed files with 8 additions and 4 deletions

View File

@ -24,7 +24,7 @@ jobs:
- name: Build - name: Build
run: | run: |
dotnet build --no-restore '-p:SkipWebApp=true;SkipTranscoder=true' -p:CopyLocalLockFileAssemblies=true 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 - name: Test
run: dotnet test --no-build '-p:CollectCoverage=true;CoverletOutputFormat=opencover' run: dotnet test --no-build '-p:CollectCoverage=true;CoverletOutputFormat=opencover'
env: env:

4
AUTHORS.md Normal file
View File

@ -0,0 +1,4 @@
# Authors
Alphabetical order by first name.
* Zoe Roux ([@AnonymusRaccoon](http://github.com/AnonymusRaccoon))

View File

@ -1,12 +1,12 @@
FROM gcc:latest as transcoder FROM gcc:latest as transcoder
RUN apt-get update && apt-get install -y cmake make libavutil-dev libavcodec-dev libavformat-dev RUN apt-get update && apt-get install -y cmake make libavutil-dev libavcodec-dev libavformat-dev
WORKDIR /transcoder WORKDIR /transcoder
COPY Kyoo.Transcoder . COPY src/Kyoo.Transcoder .
RUN cmake . && make -j RUN cmake . && make -j
FROM node:alpine as webapp FROM node:alpine as webapp
WORKDIR /webapp WORKDIR /webapp
COPY Kyoo.WebApp . COPY src/Kyoo.WebApp .
WORKDIR /webapp/Front WORKDIR /webapp/Front
RUN npm install RUN npm install
RUN npm run build -- --prod RUN npm run build -- --prod