Skip to content

Add more ci to the project #5

Add more ci to the project

Add more ci to the project #5

Workflow file for this run

name: ci
on:
pull_request:
branches:
- master
permissions: write-all
jobs:
linux-test:
runs-on: ubuntu-latest
container:
image: yanzhaowang/centipede:env
strategy:
fail-fast: false
matrix:
compiler: [gcc, clang, libc++]
name: ${{ matrix.compiler }}
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 1
submodules: 'true'
- name: install and env vars
run: |
dnf upgrade -y
dnf install -y conan nodejs hostname
echo "PARENT_DIR=$PWD" >> $GITHUB_ENV
echo "CONAN_HOME=$PWD/.conan2" >> $GITHUB_ENV
echo "GTEST_COLOR=1" >> $GITHUB_ENV