@@ -44,16 +44,13 @@ jobs:
44
44
path : build/docker/
45
45
46
46
Linux :
47
- runs-on : ubuntu-latest
47
+ runs-on : ubuntu-24.04
48
48
steps :
49
49
- uses : actions/checkout@v4
50
50
51
51
- name : Update OS and Compilers
52
52
run : |
53
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
54
- sudo apt install -y cmake gcc-12 g++-12 ninja-build
55
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 10
56
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 10
53
+ sudo apt install -y cmake ninja-build
57
54
58
55
- name : Build proxy
59
56
run : |
67
64
path : build/bin/proxy_server
68
65
69
66
Alpine :
70
- runs-on : ubuntu-latest
67
+ runs-on : ubuntu-24.04
71
68
container :
72
69
image : alpine:3.20.1
73
70
steps :
@@ -88,16 +85,13 @@ jobs:
88
85
path : build/bin/proxy_server
89
86
90
87
MiMalloc :
91
- runs-on : ubuntu-latest
88
+ runs-on : ubuntu-24.04
92
89
steps :
93
90
- uses : actions/checkout@v4
94
91
95
92
- name : Update OS and Compilers
96
93
run : |
97
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
98
- sudo apt install -y cmake gcc-12 g++-12 ninja-build
99
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 10
100
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 10
94
+ sudo apt install -y cmake ninja-build
101
95
102
96
- name : Build mimalloc
103
97
run : |
@@ -121,16 +115,13 @@ jobs:
121
115
path : build/bin/proxy_server
122
116
123
117
SnMalloc :
124
- runs-on : ubuntu-latest
118
+ runs-on : ubuntu-24.04
125
119
steps :
126
120
- uses : actions/checkout@v4
127
121
128
122
- name : Update OS and Compilers
129
123
run : |
130
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
131
- sudo apt install -y cmake gcc-12 g++-12 ninja-build
132
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 10
133
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 10
124
+ sudo apt install -y cmake ninja-build
134
125
135
126
- name : Build proxy
136
127
run : |
0 commit comments