Skip to content

Commit

Permalink
ci github: added initial support
Browse files Browse the repository at this point in the history
Signed-off-by: John Sanpe <[email protected]>
  • Loading branch information
sanpeqf committed Jan 16, 2025
1 parent 7a23ed7 commit 570a7df
Show file tree
Hide file tree
Showing 2 changed files with 114 additions and 0 deletions.
57 changes: 57 additions & 0 deletions .github/workflows/ubuntu-clang.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: build default on ubuntu clang

on:
repository_dispatch:
workflow_dispatch:
push:
pull_request:
schedule:
- cron: '0 */2 * * *'

env:
BUILD_TYPE: Release

jobs:
build:
name: Test on ${{matrix.os}}
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-20.04]

steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: install dependencies
run: |
sudo apt update
sudo apt install cmake make clang ccache wget tar
- name: install environment
run: |
wget https://github.com/openbfdev/bfdev-package/raw/refs/heads/main/bfdev-linux-amd64.tar.gz
sudo tar -xzvf -c bfdev-linux-amd64.tar.gz -C /usr
- name: configure cmake
run: |
cmake -B ${{github.workspace}}/build \
-D CMAKE_INSTALL_PREFIX=${{github.workspace}}/build/install \
-D CMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} \
-D CMAKE_C_COMPILER=/usr/lib/ccache/clang
- name: make
run: |
cmake --build ${{github.workspace}}/build \
--config ${{env.BUILD_TYPE}}
- name: install
run: |
cmake --build ${{github.workspace}}/build \
--config ${{env.BUILD_TYPE}} -- install
- name: ctest
working-directory: ${{github.workspace}}/build
run: ctest -C ${{env.BUILD_TYPE}} -V
57 changes: 57 additions & 0 deletions .github/workflows/ubuntu-gcc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: build default on ubuntu gcc

on:
repository_dispatch:
workflow_dispatch:
push:
pull_request:
schedule:
- cron: '0 */2 * * *'

env:
BUILD_TYPE: Release

jobs:
build:
name: Test on ${{matrix.os}}
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-20.04]

steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: install dependencies
run: |
sudo apt update
sudo apt install cmake make gcc ccache wget tar
- name: install environment
run: |
wget https://github.com/openbfdev/bfdev-package/raw/refs/heads/main/bfdev-linux-amd64.tar.gz
sudo tar -xzvf -c bfdev-linux-amd64.tar.gz -C /usr
- name: configure cmake
run: |
cmake -B ${{github.workspace}}/build \
-D CMAKE_INSTALL_PREFIX=${{github.workspace}}/build/install \
-D CMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} \
-D CMAKE_C_COMPILER=/usr/lib/ccache/gcc
- name: make
run: |
cmake --build ${{github.workspace}}/build \
--config ${{env.BUILD_TYPE}}
- name: install
run: |
cmake --build ${{github.workspace}}/build \
--config ${{env.BUILD_TYPE}} -- install
- name: ctest
working-directory: ${{github.workspace}}/build
run: ctest -C ${{env.BUILD_TYPE}} -V

0 comments on commit 570a7df

Please sign in to comment.