@@ -17,17 +17,17 @@ jobs:
17
17
- name : Checkout code
18
18
uses : actions/checkout@v2
19
19
- name : Compile SDL2 unit
20
- run : fpc sdl2.pas
20
+ run : fpc units/ sdl2.pas
21
21
- name : Compile SDL2_gfx unit
22
- run : fpc sdl2_gfx.pas
22
+ run : fpc units/ sdl2_gfx.pas
23
23
- name : Compile SDL2_image unit
24
- run : fpc sdl2_image.pas
24
+ run : fpc units/ sdl2_image.pas
25
25
- name : Compile SDL2_mixer unit
26
- run : fpc sdl2_mixer.pas
26
+ run : fpc units/ sdl2_mixer.pas
27
27
- name : Compile SDL2_net unit
28
- run : fpc sdl2_net.pas
28
+ run : fpc units/ sdl2_net.pas
29
29
- name : Compile SDL2_ttf unit
30
- run : fpc sdl2_ttf.pas
30
+ run : fpc units/ sdl2_ttf.pas
31
31
ubuntu-20-04 :
32
32
runs-on : ubuntu-20.04
33
33
steps :
@@ -39,17 +39,17 @@ jobs:
39
39
- name : Checkout code
40
40
uses : actions/checkout@v2
41
41
- name : Compile SDL2 unit
42
- run : fpc sdl2.pas
42
+ run : fpc units/ sdl2.pas
43
43
- name : Compile SDL2_gfx unit
44
- run : fpc sdl2_gfx.pas
44
+ run : fpc units/ sdl2_gfx.pas
45
45
- name : Compile SDL2_image unit
46
- run : fpc sdl2_image.pas
46
+ run : fpc units/ sdl2_image.pas
47
47
- name : Compile SDL2_mixer unit
48
- run : fpc sdl2_mixer.pas
48
+ run : fpc units/ sdl2_mixer.pas
49
49
- name : Compile SDL2_net unit
50
- run : fpc sdl2_net.pas
50
+ run : fpc units/ sdl2_net.pas
51
51
- name : Compile SDL2_ttf unit
52
- run : fpc sdl2_ttf.pas
52
+ run : fpc units/ sdl2_ttf.pas
53
53
windows-2022 :
54
54
runs-on : windows-2022
55
55
steps :
@@ -59,15 +59,15 @@ jobs:
59
59
- name : Checkout code
60
60
uses : actions/checkout@v2
61
61
- name : Compile SDL2 unit
62
- run : C:/lazarus/fpc/*/bin/x86_64-win64/fpc.exe sdl2.pas
62
+ run : C:/lazarus/fpc/*/bin/x86_64-win64/fpc.exe units/ sdl2.pas
63
63
- name : Compile SDL2_gfx unit
64
- run : C:/lazarus/fpc/*/bin/x86_64-win64/fpc.exe sdl2_gfx.pas
64
+ run : C:/lazarus/fpc/*/bin/x86_64-win64/fpc.exe units/ sdl2_gfx.pas
65
65
- name : Compile SDL2_image unit
66
- run : C:/lazarus/fpc/*/bin/x86_64-win64/fpc.exe sdl2_image.pas
66
+ run : C:/lazarus/fpc/*/bin/x86_64-win64/fpc.exe units/ sdl2_image.pas
67
67
- name : Compile SDL2_mixer unit
68
- run : C:/lazarus/fpc/*/bin/x86_64-win64/fpc.exe sdl2_mixer.pas
68
+ run : C:/lazarus/fpc/*/bin/x86_64-win64/fpc.exe units/ sdl2_mixer.pas
69
69
- name : Compile SDL2_net unit
70
- run : C:/lazarus/fpc/*/bin/x86_64-win64/fpc.exe sdl2_net.pas
70
+ run : C:/lazarus/fpc/*/bin/x86_64-win64/fpc.exe units/ sdl2_net.pas
71
71
- name : Compile SDL2_ttf unit
72
- run : C:/lazarus/fpc/*/bin/x86_64-win64/fpc.exe sdl2_ttf.pas
72
+ run : C:/lazarus/fpc/*/bin/x86_64-win64/fpc.exe units/ sdl2_ttf.pas
73
73
0 commit comments