Skip to content

TEST CI

TEST CI #90

Workflow file for this run

name: Linux
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
centos8-gcc921-iouring:
runs-on: [self-hosted, Linux, ARM64]
container:
image: dokken/centos-stream-8:sha-40294ce
options: --cpus 4
steps:
- uses: actions/checkout@v3
- name: Install Dependencies
shell: bash
run: |
sudo dnf install -y git gcc-c++ cmake
sudo dnf install -y gcc-toolset-9-gcc-c++
sudo dnf install -y openssl-devel libcurl-devel libaio-devel
sudo dnf install -y epel-release
sudo dnf install -y fuse-devel libgsasl-devel
- name: Configure CMake
run: |
pwd
cmake -B build -D BUILD_TESTING=1 -D ENABLE_SASL=1 -D ENABLE_FUSE=1 -D ENABLE_URING=1 -D FETCH_GTEST_GFLAGS_SOURCE=1
- name: Build
run: |
pwd
cmake --build ${{github.workspace}}/build
- name: Test
# working-directory: ${{github.workspace}}/build
run: |
pwd
sudo bash -c 'ulimit -l unlimited; ctest --timeout 3600 -V'