mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-07-09 03:04:20 -04:00
CI: Trying to fix the CI after the move to the src folder
This commit is contained in:
parent
56bfa4d795
commit
de6a2b5d72
4
.github/workflows/tests.yml
vendored
4
.github/workflows/tests.yml
vendored
@ -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:
|
||||||
@ -33,7 +33,7 @@ jobs:
|
|||||||
POSTGRES_PASSWORD: postgres
|
POSTGRES_PASSWORD: postgres
|
||||||
- name: Sanitize coverage output
|
- name: Sanitize coverage output
|
||||||
if: ${{ always() }}
|
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
|
- name: Upload coverage report
|
||||||
if: ${{ always() }}
|
if: ${{ always() }}
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
|
4
AUTHORS.md
Normal file
4
AUTHORS.md
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
# Authors
|
||||||
|
Alphabetical order by first name.
|
||||||
|
|
||||||
|
* Zoe Roux ([@AnonymusRaccoon](http://github.com/AnonymusRaccoon))
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user