diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-03 21:47:48 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-03 21:47:51 +0200 |
commit | cce9ea25d243672b9f88b124eb56e4bf37adba4c (patch) | |
tree | 3079b0d73c273b027d520509422768941bf4671a /.github | |
parent | project.cmake: require the build dir argument (diff) | |
download | cmake-common-cce9ea25d243672b9f88b124eb56e4bf37adba4c.tar.gz cmake-common-cce9ea25d243672b9f88b124eb56e4bf37adba4c.zip |
project.cmake.build -> project.build
Accordingly, rename cmake-build to project-build.
Diffstat (limited to '')
-rw-r--r-- | .github/actions/build-example/action.yml | 2 | ||||
-rw-r--r-- | .github/workflows/basic.yml | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/actions/build-example/action.yml b/.github/actions/build-example/action.yml index ba7b43f..63dd6b0 100644 --- a/.github/actions/build-example/action.yml +++ b/.github/actions/build-example/action.yml @@ -65,5 +65,5 @@ runs: $args += '--',$src_dir,'TMP' $env:VERBOSE = 1 - & $python -m project.cmake.build $args + & $python -m project.build $args shell: pwsh 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) |