Skip to content

Commit 42b565e

Browse files
committed
[CI] Add version display
1 parent 0de1750 commit 42b565e

11 files changed

+58
-12
lines changed

.github/workflows/premake5-mac-xcode4.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,13 @@ jobs:
3434
with:
3535
submodules: recursive
3636

37+
- name: versions
38+
run: |
39+
clang --version
40+
gcc --version
41+
clang-tidy --version
42+
xcodebuild -version
43+
3744
- name: install premake5
3845
uses: ./.github/actions/install-premake5
3946
with:

.github/workflows/premake5-ubuntu-cmake.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,12 @@ jobs:
4646
with:
4747
repository: premake/premake-core
4848

49-
- name: cmake --version
50-
run: cmake --version
49+
- name versions
50+
run: |
51+
clang --version
52+
clang-tidy --version
53+
cmake --version
54+
gcc --version
5155
5256
- name: add premake cmake module
5357
run: |

.github/workflows/premake5-ubuntu-codeblocks.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,12 @@ jobs:
6363
mkdir -p ~/.config/codeblocks
6464
cp codeblocks/default.conf ~/.config/codeblocks/
6565
66+
- name versions
67+
run: |
68+
clang --version
69+
clang-tidy --version
70+
gcc --version
71+
6672
- name: test projects default(gcc)
6773
timeout-minutes: 5 # tends to not stop properly in case of failure
6874
run: | # fake X-server as codeblocks requires displays :/

.github/workflows/premake5-ubuntu-codelite.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,12 @@ jobs:
5050
- name: sudo apt-get install -y codelite
5151
run: sudo apt-get install -y codelite
5252

53-
- name: codelite --version
54-
run: xvfb-run -a codelite --version || exit 0 # codelite --version returns -1
53+
- name versions
54+
run: |
55+
clang --version
56+
clang-tidy --version
57+
gcc --version
58+
xvfb-run -a codelite --version || exit 0 # codelite --version returns -1
5559
5660
- name: test projects default(clang)
5761
run: python3 ./test_projects.py premake5 projects codelite

.github/workflows/premake5-ubuntu-qmake.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,10 @@ jobs:
5858
cache: true
5959
cache-key-prefix: 'qt-action-5.15.0_ubuntu'
6060

61-
- name: test qmake
62-
run: qmake --version
61+
- name: versions
62+
run: |
63+
clang-tidy --version
64+
qmake --version
6365
6466
- name: test projects default(gcc)
6567
run: python3 ./test_projects.py premake5 projects qmake --scripts=`pwd`

.github/workflows/premake5-windows-cmake.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,11 @@ jobs:
4747
- name: Add msbuild to PATH
4848
uses: microsoft/setup-msbuild@v2
4949

50-
- name: cmake --version
51-
run: cmake --version
50+
51+
- name: versions
52+
run: |
53+
clang-tidy --version
54+
cmake --version
5255
5356
- name: add premake cmake module
5457
run: |

.github/workflows/premake5-windows-gmake.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,12 @@ jobs:
4141
with:
4242
repository: premake/premake-core
4343

44+
45+
- name: versions
46+
run: |
47+
clang-tidy --version
48+
gcc --version
49+
4450
- name: test projects
4551
run: |
4652
python3 ./test_projects.py premake5 projects gmake --shell=posix

.github/workflows/premake5-windows-msvc-2019.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ jobs:
4343
- name: Add msbuild to PATH
4444
uses: microsoft/setup-msbuild@v2
4545

46+
- name versions
47+
run: |
48+
clang-tidy --version
49+
4650
- name: test projects (default=msc)
4751
run: |
4852
#"C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86_amd64

.github/workflows/premake5-windows-msvc-2022.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ jobs:
4242
- name: Add msbuild to PATH
4343
uses: microsoft/setup-msbuild@v2
4444

45+
- name: versions
46+
run: |
47+
clang-tidy --version
48+
4549
- name: test projects (default=msc)
4650
run: |
4751
#"C:\Program Files (x86)\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86_amd64

.github/workflows/premake5-windows-ninja-core.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,12 @@ jobs:
5050
- name: install ninja
5151
uses: seanmiddleditch/gha-setup-ninja@v6
5252

53-
- name: ninja --version
54-
run: ninja --version
53+
- name versions
54+
run: |
55+
clang --version
56+
clang-tidy --version
57+
gcc --version
58+
ninja --version
5559
5660
- name: Add cl.exe to PATH # microsoft/setup-msbuild doesn't add it :(
5761
uses: ilammy/msvc-dev-cmd@v1

0 commit comments

Comments
 (0)