-
Notifications
You must be signed in to change notification settings - Fork 2
45 lines (38 loc) · 1.12 KB
/
ubuntu-gcc13.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: ubuntu-gcc13
on:
push:
branches: ["main", "dev"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04]
steps:
- name: Installation
run: |
sudo apt-get update
sudo apt-get install -y valgrind libgl1-mesa-dev libglu1-mesa-dev p7zip gobjc g++-13 wget sudo
- uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: v2.9.1
- name: checkout
uses: actions/checkout@v3
- name: build
run: |
export XMAKE_ROOT="y"
g++-13 -v
export CXX=g++-13
export CC=gcc-13
xmake build -y
xmake install -o .
- name: build test
run: |
rm -rf out
./bin/frpc -f ./config/config.yaml -t ./template/cpp -o ./out -w ./template/web --auto_sort=1 --debug=0
xmake build -y --file=./test_xmake.lua
xmake install -o . --file=./test_xmake.lua
valgrind --log-file=a.txt --tool=memcheck --leak-check=full -s --track-origins=yes ./bin/coro_bi
cat a.txt