File tree 1 file changed +34
-0
lines changed
1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change 26
26
- name : Install dependencies
27
27
run : go mod tidy
28
28
29
+ - name : Install dependencies (Ubuntu)
30
+ if : runner.os == 'Linux'
31
+ run : |
32
+ sudo apt-get update
33
+ sudo apt-get install -y \
34
+ libgl1-mesa-dev \
35
+ libxrandr-dev \
36
+ libxxf86vm-dev \
37
+ libxi-dev \
38
+ libxcursor-dev
39
+
40
+ - name : Install dependencies (Windows)
41
+ if : runner.os == 'Windows'
42
+ run : |
43
+ choco install -y \
44
+ mingw \
45
+ libglvnd \
46
+ libxrandr-dev \
47
+ libxxf86vm-dev \
48
+ libxi-dev \
49
+ libxcursor-dev
50
+
51
+ - name : Install dependencies (macOS)
52
+ if : runner.os == 'macOS'
53
+ run : |
54
+ brew update
55
+ brew install \
56
+ mesa \
57
+ xquartz \
58
+ xrandr \
59
+ xf86-video-vmware \
60
+ libxi \
61
+ libxcursor
62
+
29
63
- name : Build project
30
64
run : |
31
65
if [[ ${{ matrix.os }} == 'ubuntu-latest' ]]; then
You can’t perform that action at this time.
0 commit comments