diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/cmake-single-platform.yml | 34 | ||||
| -rw-r--r-- | .github/workflows/formating.yml | 21 |
2 files changed, 0 insertions, 55 deletions
diff --git a/.github/workflows/cmake-single-platform.yml b/.github/workflows/cmake-single-platform.yml deleted file mode 100644 index d768361..0000000 --- a/.github/workflows/cmake-single-platform.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: CMake on a single platform - -on: - push: - branches: ["main"] - pull_request: - branches: ["main"] - -env: - BUILD_TYPE: Debug - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - name: Install GCC 14 - run: | - sudo apt update - sudo apt install -y gcc-14 g++-14 - - - name: Configure CMake - env: - CC: gcc-14 - CXX: g++-14 - run: cmake -B build -S . -DCMAKE_EXPORT_COMPILE_COMMANDS=ON - - - name: Build - env: - CC: gcc-14 - CXX: g++-14 - run: cmake --build build diff --git a/.github/workflows/formating.yml b/.github/workflows/formating.yml deleted file mode 100644 index 485cc05..0000000 --- a/.github/workflows/formating.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: Formating test - -on: - push: - branches: ["main"] - pull_request: - branches: ["main"] - -env: - BUILD_TYPE: Debug - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - name: Check formatting - run: | - find src -name '*.cpp' -o -name '*.hpp' | xargs clang-format --dry-run --Werror |
