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 | stages: |
|
2 | stages: |
|
4 | - build |
|
3 | - build |
@@ -7,6 +6,14 | |||||
|
7 | stage: build |
|
6 | stage: build |
|
8 | script: |
|
7 | script: |
|
9 | - dotnet build isometric-park-fna-core.sln -f netcoreapp3.1 |
|
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 | build-release: |
|
18 | build-release: |
|
12 | stage: build |
|
19 | stage: build |
@@ -14,6 +21,7 | |||||
|
14 | - dotnet build isometric-park-fna-core.sln -f netcoreapp3.1 -c Release |
|
21 | - dotnet build isometric-park-fna-core.sln -f netcoreapp3.1 -c Release |
|
15 | - cp -r fnalibs/lib64 isometric-park-fna/bin/Release/ |
|
22 | - cp -r fnalibs/lib64 isometric-park-fna/bin/Release/ |
|
16 | - cd isometric-park-fna/bin/Release/netcoreapp3.1; ls "../../../../fnalibs/lib64" |
|
23 | - cd isometric-park-fna/bin/Release/netcoreapp3.1; ls "../../../../fnalibs/lib64" |
|
|
24 | - apt-get update | ||
|
17 | - apt install -y xorg-dev libglu1-mesa libgl1-mesa-dev xvfb libxinerama1 libxcursor1 |
|
25 | - apt install -y xorg-dev libglu1-mesa libgl1-mesa-dev xvfb libxinerama1 libxcursor1 |
|
18 | - LD_LIBRARY_PATH="../../../../fnalibs/lib64" DYLD_LIBRARY_PATH="../../../../fnalibs/osx" xvfb-run -a -s "-screen 0 1400x900x24 +extension RANDR" -- dotnet ./isometric-park-fna.dll & |
|
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 | - sleep 5; xwd -root -out screenshot.xwd |
|
27 | - sleep 5; xwd -root -out screenshot.xwd |
@@ -22,3 +30,4 | |||||
|
22 | paths: |
|
30 | paths: |
|
23 | - screenshot.xwd |
|
31 | - screenshot.xwd |
|
24 | expire_in: 1 week |
|
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