Description:
Add update command because the Docker image removes the package lists.
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
@@ -1,4 +1,3 | |||
|
1 | image: mcr.microsoft.com/dotnet/sdk:3.1-focal | |
|
2 | 1 | |
|
3 | 2 | stages: |
|
4 | 3 | - build |
@@ -7,6 +6,14 | |||
|
7 | 6 | stage: build |
|
8 | 7 | script: |
|
9 | 8 | - dotnet build isometric-park-fna-core.sln -f netcoreapp3.1 |
|
9 | image: mcr.microsoft.com/dotnet/sdk:3.1-focal | |
|
10 | ||
|
11 | ||
|
12 | build-release-windows: | |
|
13 | stage: build | |
|
14 | script: | |
|
15 | - dotnet build isometric-park-fna-core.sln -f netcoreapp3.1 -c Release | |
|
16 | image: mcr.microsoft.com/dotnet/sdk:3.1 | |
|
10 | 17 | |
|
11 | 18 | build-release: |
|
12 | 19 | stage: build |
@@ -14,6 +21,7 | |||
|
14 | 21 | - dotnet build isometric-park-fna-core.sln -f netcoreapp3.1 -c Release |
|
15 | 22 | - cp -r fnalibs/lib64 isometric-park-fna/bin/Release/ |
|
16 | 23 | - cd isometric-park-fna/bin/Release/netcoreapp3.1; ls "../../../../fnalibs/lib64" |
|
24 | - apt-get update | |
|
17 | 25 | - apt install -y xorg-dev libglu1-mesa libgl1-mesa-dev xvfb libxinerama1 libxcursor1 |
|
18 | 26 | - LD_LIBRARY_PATH="../../../../fnalibs/lib64" DYLD_LIBRARY_PATH="../../../../fnalibs/osx" xvfb-run -a -s "-screen 0 1400x900x24 +extension RANDR" -- dotnet ./isometric-park-fna.dll & |
|
19 | 27 | - sleep 5; xwd -root -out screenshot.xwd |
@@ -22,3 +30,4 | |||
|
22 | 30 | paths: |
|
23 | 31 | - screenshot.xwd |
|
24 | 32 | expire_in: 1 week |
|
33 | image: mcr.microsoft.com/dotnet/sdk:3.1-focal |
You need to be logged in to leave comments.
Login now