summaryrefslogtreecommitdiff
path: root/lib/bindey/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorjacqueline <me@jacqueline.id.au>2024-01-15 12:31:20 +1100
committerjacqueline <me@jacqueline.id.au>2024-01-15 12:31:20 +1100
commit7cdcd44e0ca10ebdc796638190ed1d9b45d99ef0 (patch)
tree637b43848d17c9dbdc1688cb4733eb235f223e37 /lib/bindey/.github/workflows/ci.yml
parent0e04eb918ec976017276306181282769d8896c83 (diff)
downloadtangara-fw-7cdcd44e0ca10ebdc796638190ed1d9b45d99ef0.tar.gz
Begin migration of remaining screens to Lua
Diffstat (limited to 'lib/bindey/.github/workflows/ci.yml')
-rw-r--r--lib/bindey/.github/workflows/ci.yml44
1 files changed, 0 insertions, 44 deletions
diff --git a/lib/bindey/.github/workflows/ci.yml b/lib/bindey/.github/workflows/ci.yml
deleted file mode 100644
index 060f14e4..00000000
--- a/lib/bindey/.github/workflows/ci.yml
+++ /dev/null
@@ -1,44 +0,0 @@
-name: ci
-
-on: [pull_request]
-
-env:
- # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
- BUILD_TYPE: Release
-
-jobs:
- Build-And-Test:
- runs-on: macos-latest
-
- steps:
- - uses: actions/checkout@v2
- with:
- submodules: true
-
- - name: Create Build Environment
- # Some projects don't allow in-source building, so create a separate build directory
- # We'll use this as our working directory for all subsequent commands
- run: cmake -E make_directory ${{runner.workspace}}/build
-
- - name: Configure
- shell: bash
- working-directory: ${{runner.workspace}}/build
- run: cmake $GITHUB_WORKSPACE -GXcode -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DBINDEY_BUILD_TESTS=ON
- env:
- CC: clang
- CXX: clang
-
- - name: Build
- working-directory: ${{runner.workspace}}/build
- shell: bash
- run: cmake --build . --config $BUILD_TYPE
- env:
- CC: clang
- CXX: clang
-
- - name: Test
- working-directory: ${{runner.workspace}}/build
- shell: bash
- # Execute tests defined by the CMake configuration.
- # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
- run: ctest -C $BUILD_TYPE