Skip to content

Commit

Permalink
Update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
sungaila committed Jul 3, 2024
1 parent 9700b10 commit 42a3210
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,7 @@ jobs:
if: runner.os == 'Windows' && (success() || failure())
run: docker build -t console -f src/FrameworkTests/AotConsole/Dockerfiles/windows-aot . && docker run --rm -t console
- name: docker system prune
if: success() || failure()
run: docker system prune -a -f
- name: unittests (linux)
if: runner.os == 'Linux' && (success() || failure())
Expand All @@ -274,7 +275,7 @@ jobs:
if: success() || failure()
uses: actions/upload-artifact@main
with:
name: Test results (docker ${{ matrix.os }})
name: Test results (${{ matrix.os }}; docker)
path: ./**/*.trx
if-no-files-found: error
retention-days: 1
Expand Down
1 change: 0 additions & 1 deletion src/FrameworkTests/AotConsole/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ public class Program

public static void Main()
{
throw new NotImplementedException();
Directory.SetCurrentDirectory(Path.GetDirectoryName(AppContext.BaseDirectory)!);
using var input = new FileStream("SocialPreview.pdf", FileMode.Open, FileAccess.Read);
using var bitmap = PDFtoImage.Conversion.ToImage(input);
Expand Down

0 comments on commit 42a3210

Please sign in to comment.