aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-04-13 19:14:23 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-04-13 19:14:23 +0300
commit0fa3ad2c007d1ea90694f73754ccac8c42dcdf93 (patch)
tree2133c45f56693878fc7b4c00a9005469eb78bd77 /.github
parentsetup.cfg: fix package name (diff)
downloadcmake-common-0fa3ad2c007d1ea90694f73754ccac8c42dcdf93.tar.gz
cmake-common-0fa3ad2c007d1ea90694f73754ccac8c42dcdf93.zip
remove excessive logging & obsolete project.ci.* packages
Logging command line arguments before parsing them is a bit excessive.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci_appveyor.yml7
-rw-r--r--.github/workflows/ci_github.yml2
-rw-r--r--.github/workflows/ci_travis.yml6
3 files changed, 6 insertions, 9 deletions
diff --git a/.github/workflows/ci_appveyor.yml b/.github/workflows/ci_appveyor.yml
index f27f43b..c9d34a1 100644
--- a/.github/workflows/ci_appveyor.yml
+++ b/.github/workflows/ci_appveyor.yml
@@ -1,6 +1,5 @@
# This workflow pretends like it's being run on AppVeyor by setting the
-# appropriate environment variables. The project.ci.appveyor package is
-# tested.
+# appropriate environment variables.
name: CI (AppVeyor)
@@ -52,10 +51,10 @@ jobs:
key: 'boost-${{ env.boost_version }}'
- name: Build Boost
- run: python -m project.ci.appveyor.boost -- --with-filesystem
+ run: python -m project.ci.boost -- --with-filesystem
- name: Build example project
- run: python -m project.ci.appveyor.cmake --install
+ run: python -m project.ci.cmake --install
- name: Run example project
run: |
diff --git a/.github/workflows/ci_github.yml b/.github/workflows/ci_github.yml
index 897e37e..4c4116e 100644
--- a/.github/workflows/ci_github.yml
+++ b/.github/workflows/ci_github.yml
@@ -1,5 +1,3 @@
-# The project.ci.github package is tested.
-
name: CI (GitHub)
on:
diff --git a/.github/workflows/ci_travis.yml b/.github/workflows/ci_travis.yml
index 3ee4550..d3e8bf3 100644
--- a/.github/workflows/ci_travis.yml
+++ b/.github/workflows/ci_travis.yml
@@ -1,5 +1,5 @@
# This workflow pretends like it's being run on Travis by setting the
-# appropriate environment variables. The project.ci.travis package is tested.
+# appropriate environment variables.
name: CI (Travis)
@@ -49,10 +49,10 @@ jobs:
key: 'boost-${{ env.boost_version }}'
- name: Build Boost
- run: python -m project.ci.travis.boost -- --with-filesystem
+ run: python -m project.ci.boost -- --with-filesystem
- name: Build example project
- run: python -m project.ci.travis.cmake --install
+ run: python -m project.ci.cmake --install
- name: Run example project
run: |