aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-07-03 21:47:48 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2023-07-03 21:47:51 +0200
commitcce9ea25d243672b9f88b124eb56e4bf37adba4c (patch)
tree3079b0d73c273b027d520509422768941bf4671a /.github/workflows
parentproject.cmake: require the build dir argument (diff)
downloadcmake-common-cce9ea25d243672b9f88b124eb56e4bf37adba4c.tar.gz
cmake-common-cce9ea25d243672b9f88b124eb56e4bf37adba4c.zip
project.cmake.build -> project.build
Accordingly, rename cmake-build to project-build.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/basic.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/basic.yml b/.github/workflows/basic.yml
index d5db93d..821c205 100644
--- a/.github/workflows/basic.yml
+++ b/.github/workflows/basic.yml
@@ -53,7 +53,7 @@ jobs:
- name: Build example project
run: |
$src_dir = Join-Path examples boost
- python -m project.cmake.build --boost boost/ --install install/ -- $src_dir build/
+ python -m project.build --boost boost/ --install install/ -- $src_dir build/
- name: Run example project
run: ./.ci/run_foo.ps1 (Join-Path (Get-Location).Path install bin foo)
@@ -90,7 +90,7 @@ jobs:
run: |
boost-download --version
boost-build --version
- cmake-build --version
+ project-build --version
- name: Build Boost
run: |
boost-download --cache . '${{ matrix.boost-version }}' boost/
@@ -98,7 +98,7 @@ jobs:
- name: Build example project
run: |
$src_dir = Join-Path examples boost
- cmake-build --boost boost/ --install install/ -- $src_dir build/
+ project-build --boost boost/ --install install/ -- $src_dir build/
- name: Run example project
run: ./.ci/run_foo.ps1 (Join-Path (Get-Location).Path install bin foo)