31 Star 222 Fork 45

TARS_Go-Embedded/UIML

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
gcc-c++11.yml 1.34 KB
一键复制 编辑 原始数据 按行查看 历史
RigoLigo 提交于 2023-12-20 22:01 +08:00 . New: 添加ETL模板库
name: gcc-c++11
on:
push:
branches: [ master, development, pull-request/* ]
pull_request:
branches: [ master, pull-request/* ]
jobs:
build-gcc-cpp11-linux-stl:
name: GCC C++11 Linux - STL
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04]
steps:
- uses: actions/checkout@v3
- name: Build
run: |
git fetch
export ASAN_OPTIONS=alloc_dealloc_mismatch=0,detect_leaks=0
export CC=gcc
export CXX=g++
cmake -DBUILD_TESTS=ON -DNO_STL=OFF -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=OFF -DETL_CXX_STANDARD=11 ./
gcc --version
make
- name: Run tests
run: ./test/etl_tests
build-gcc-cpp11-linux-no-stl:
name: GCC C++11 Linux - No STL
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04]
steps:
- uses: actions/checkout@v3
- name: Build
run: |
git fetch
export ASAN_OPTIONS=alloc_dealloc_mismatch=0,detect_leaks=0
export CC=gcc
export CXX=g++
cmake -DBUILD_TESTS=ON -DNO_STL=ON -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=OFF -DETL_CXX_STANDARD=11 ./
gcc --version
make
- name: Run tests
run: ./test/etl_tests
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/tarsgo-embedded/UIML.git
git@gitee.com:tarsgo-embedded/UIML.git
tarsgo-embedded
UIML
UIML
00f98f0c4f500ccb3dcb41b6a27b7582d8e6de54

搜索帮助