Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 0 additions & 33 deletions .circleci/config.yml

This file was deleted.

54 changes: 54 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: CI

on:
push:
branches:
- master
- 'release/*'
pull_request:
branches:
- master
workflow_dispatch:

jobs:
test_debug:
runs-on: ubuntu-latest
permissions:
contents: read
container:
image: tschijnmo/drudge:base

steps:
- name: Checkout repository with submodules
uses: actions/checkout@v3
with:
submodules: recursive

- name: Build and test (debug)
run: |
mkdir cmake-test-debug
cd cmake-test-debug
cmake -DCMAKE_BUILD_TYPE=debug ..
Copy link

Copilot AI Nov 9, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

CMAKE_BUILD_TYPE values should be capitalized. Use 'Debug' instead of 'debug' to follow CMake conventions.

Copilot uses AI. Check for mistakes.
make
./test/testmain

test_release:
runs-on: ubuntu-latest
permissions:
contents: read
container:
image: tschijnmo/drudge:base

steps:
- name: Checkout repository with submodules
uses: actions/checkout@v3
with:
submodules: recursive

- name: Build and test (release)
run: |
mkdir cmake-test-release
cd cmake-test-release
cmake -DCMAKE_BUILD_TYPE=release ..
Copy link

Copilot AI Nov 9, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

CMAKE_BUILD_TYPE values should be capitalized. Use 'Release' instead of 'release' to follow CMake conventions.

Suggested change
cmake -DCMAKE_BUILD_TYPE=release ..
cmake -DCMAKE_BUILD_TYPE=Release ..

Copilot uses AI. Check for mistakes.
make
./test/testmain
18 changes: 0 additions & 18 deletions .ycm_extra_conf.py

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Build Status](https://circleci.com/gh/tschijnmo/cpypp.svg?style=shield)](https://circleci.com/gh/tschijnmo/cpypp)
[![CI](https://github.com/DrudgeCAS/cpypp/actions/workflows/ci.yml/badge.svg)](https://github.com/DrudgeCAS/cpypp/actions/workflows/ci.yml)

# cpypp

Expand Down