diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-01-12 19:59:22 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-01-21 11:31:20 +0100 |
commit | 5930a3754c755ad7d1957205290222253364aefe (patch) | |
tree | d1b4ad0d2d3e4015e03dc235fd6cb27fd221d036 /.github | |
parent | 4f1e729de7a0b0d37f81d4277814a1c03c26e3f2 (diff) |
ci: wip
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/cmake.yml | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 92bda418..57f21bf4 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -1,12 +1,8 @@ name: CMake on: - push: - branches: [ master ] - tags: - - '*' - pull_request: - branches: [ master ] + - push + - pull_request env: # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) @@ -32,7 +28,16 @@ jobs: cmake: .\.github\workflows\build-windows.bat cmake steps: - - uses: actions/checkout@v2 + - name: clone opentrack/opentrack + uses: actions/checkout@v2 + + - name: clone opentrack/depends + uses: actions/checkout@v2 + with: + repository: opentrack/opentrack-depends + submodules: true + path: opentrack-depends + - uses: seanmiddleditch/gha-setup-ninja@master - name: Install Linux Dependencies |