diff options
author | Michael Hirsch, Ph.D <scivision@users.noreply.github.com> | 2020-02-19 11:05:21 (GMT) |
---|---|---|
committer | Michael Hirsch, Ph.D <scivision@users.noreply.github.com> | 2020-02-19 11:05:21 (GMT) |
commit | 5ae2ce8f552865206880a022a75da5f5d3acdce8 (patch) | |
tree | 2db2b46c2a080692bc8635319e6fe834067c18ab /.github/workflows | |
parent | 9fd5d3e00bac970dcdb15010a7eef381c4a44c14 (diff) | |
download | Ninja-5ae2ce8f552865206880a022a75da5f5d3acdce8.zip Ninja-5ae2ce8f552865206880a022a75da5f5d3acdce8.tar.gz Ninja-5ae2ce8f552865206880a022a75da5f5d3acdce8.tar.bz2 |
ci: use contemporary CMake commands and use latest CMake
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/linux.yml | 20 | ||||
-rw-r--r-- | .github/workflows/macos.yml | 10 | ||||
-rw-r--r-- | .github/workflows/windows.yml | 10 |
3 files changed, 24 insertions, 16 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 2febee2..eb7005c 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -15,22 +15,26 @@ jobs: - uses: actions/checkout@v1 - name: Install dependencies run: | - curl -L -O https://github.com/Kitware/CMake/releases/download/v3.16.2/cmake-3.16.2-Linux-x86_64.sh - chmod +x cmake-3.16.2-Linux-x86_64.sh - ./cmake-3.16.2-Linux-x86_64.sh --skip-license --prefix=/usr/local + curl -L -O https://github.com/Kitware/CMake/releases/download/v3.16.4/cmake-3.16.4-Linux-x86_64.sh + chmod +x cmake-3.16.4-Linux-x86_64.sh + ./cmake-3.16.4-Linux-x86_64.sh --skip-license --prefix=/usr/local curl -L -O https://www.mirrorservice.org/sites/dl.fedoraproject.org/pub/epel/7/x86_64/Packages/p/p7zip-16.02-10.el7.x86_64.rpm curl -L -O https://www.mirrorservice.org/sites/dl.fedoraproject.org/pub/epel/7/x86_64/Packages/p/p7zip-plugins-16.02-10.el7.x86_64.rpm rpm -U --quiet p7zip-16.02-10.el7.x86_64.rpm rpm -U --quiet p7zip-plugins-16.02-10.el7.x86_64.rpm yum install -y make gcc-c++ + - name: Build ninja shell: bash run: | - mkdir build && cd build - cmake -DCMAKE_BUILD_TYPE=Release .. - cmake --build . --parallel --config Release - ctest -vv - strip ninja + cmake -DCMAKE_BUILD_TYPE=Release -B build + cmake --build build --parallel --config Release + strip build/ninja + + - name: Test ninja + run: ctest -vv + working-directory: build + - name: Create ninja archive run: | mkdir artifact diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 2a7c100..b8ea7d7 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -19,10 +19,12 @@ jobs: - name: Build ninja shell: bash run: | - mkdir build && cd build - cmake -DCMAKE_BUILD_TYPE=Release .. - cmake --build . --parallel --config Release - ctest -vv + cmake -DCMAKE_BUILD_TYPE=Release -B build + cmake --build build --parallel --config Release + + - name: Test ninja + run: ctest -vv + working-directory: build - name: Create ninja archive shell: bash diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index bdec6c9..7c856f3 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -19,10 +19,12 @@ jobs: - name: Build ninja shell: bash run: | - mkdir build && cd build - cmake -DCMAKE_BUILD_TYPE=Release .. - cmake --build . --parallel --config Release - ctest -vv + cmake -DCMAKE_BUILD_TYPE=Release -B build + cmake --build build --parallel --config Release + + - name: Test ninja + run: ctest -vv + working-directory: build - name: Create ninja archive shell: bash |