Skip to content

Commit bb8595e

Browse files
Queng123ripel2
andauthored
ci: add compilation check (#3)
* feat(CI): add release workflow when tag is created * feat(CI): add CI to check repository cleanless and check compilation * feat(Clang-tidy): add .clang-tidy with base config * feat(CI): add clang-format to check coding format * ci: add build script in CI * ci: add check program compilation * ci: add MSVC buold tools * ci: add choco source * ci: add installation cmake * ci: fix syntax * ci: add MSVC buold tools * ci: add linux dependencies * ci: add sudo -y * build: remove @echo off * ci: use get-cmake action * test: ci test * ci: silence non error message in build actions * ci: use cmd shell for windows batch build script * build: move vcpkg build inside if condition * ci: check for binaries at repository root * ci: add vcpkg caching * ci: do not cd to build before ctest * fix: build script not building if vcpkg is installed * ci: run clang-tidy after unix compilation * fix: clang-tidy building a second time * fix: clang-tidy building a second time * ci: remove clang-tidy from cmake * ci: bump checkout to v3 --------- Co-authored-by: Lucas Hauszler <[email protected]>
1 parent e7520f2 commit bb8595e

File tree

4 files changed

+166
-9
lines changed

4 files changed

+166
-9
lines changed

.clang-tidy

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Checks: '-*,cppcoreguidelines-*,clang-analyzer-*,performance-*,readability-*'

.github/workflows/CI.yml

+113
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches-ignore:
6+
- 'ga-ignore-**'
7+
8+
env:
9+
EXECUTABLES: "r-type_server,r-type_client"
10+
11+
jobs:
12+
check_program_compilation_unix:
13+
name: Checks if the program compiles correctly, executables files got created and source is clean
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v3
18+
with:
19+
fetch-depth: 0
20+
21+
- name: Set up CMake
22+
run: |
23+
sudo apt-get update
24+
sudo apt-get install -y cmake
25+
26+
- name: Install project dependencies
27+
run: |
28+
sudo apt install -y libxinerama-dev libxcursor-dev xorg-dev libglu1-mesa-dev pkg-config > /dev/null
29+
30+
- uses: actions/cache@v3
31+
name: Store VCPKG folder in cache
32+
with:
33+
path: ./vcpkg
34+
key: ${{ runner.os }}-vcpkg-raylib_gtest_boost-core_boost-asio_boost-thread_boost-system_boost-filesystem
35+
restore-keys: |
36+
${{ runner.os }}-vcpkg-
37+
38+
- name: Run the Linux build script
39+
run: ./build.sh > /dev/null
40+
41+
- name: Verifies that files are present and executable
42+
run: |
43+
SEARCH_BINARIES="${{ env.EXECUTABLES }}"
44+
IFS=$','
45+
for BIN in $SEARCH_BINARIES; do
46+
if [ ! -f "${BIN}" ]; then
47+
echo "::error file=${BIN},title=Binary not found::${BIN}"
48+
exit 1
49+
fi
50+
if [ ! -x "${BIN}" ]; then
51+
echo "::error file=${BIN},title=Binary not executable::${BIN}"
52+
exit 1
53+
fi
54+
done
55+
56+
- name: Run the tests using ctest
57+
run: |
58+
ctest
59+
60+
check_program_compilation_windows:
61+
name: Checks if the program compiles correctly on windows and executables files got created
62+
runs-on: windows-latest
63+
steps:
64+
- name: Checkout repository
65+
uses: actions/checkout@v3
66+
with:
67+
fetch-depth: 0
68+
69+
- name: Download and install MSVC Build Tools
70+
run: |
71+
$url = "https://aka.ms/vs/16/release/vs_buildtools.exe"
72+
$installPath = "$env:USERPROFILE\vs_buildtools.exe"
73+
Invoke-WebRequest -Uri $url -OutFile $installPath
74+
Start-Process -Wait -FilePath $installPath -ArgumentList "--quiet --wait --norestart --nocache --installPath C:\BuildTools"
75+
shell: pwsh
76+
77+
- uses: lukka/get-cmake@latest
78+
name: Set up CMake
79+
80+
- uses: actions/cache@v3
81+
name: Store VCPKG folder in cache
82+
with:
83+
path: ./vcpkg
84+
key: ${{ runner.os }}-vcpkg-raylib_gtest_boost-core_boost-asio_boost-thread_boost-system_boost-filesystem
85+
restore-keys: |
86+
${{ runner.os }}-vcpkg-
87+
88+
- name: Install project dependencies and build
89+
run: .\build.bat
90+
shell: cmd
91+
92+
- name: Verifies that files are present and executable
93+
run: |
94+
$executables = $env:EXECUTABLES
95+
$folder = (Get-Location).Path
96+
$binaries = $executables -split ','
97+
foreach ($binary in $binaries) {
98+
$binary = $binary.Trim() + ".exe"
99+
$path = Join-Path -Path $folder -ChildPath $binary
100+
if ((Test-Path $path) -and (Test-Path $path -PathType Leaf) -and (-not (Get-ItemProperty -Path $path).IsReadOnly)) {
101+
Write-Host "$binary existe dans le répertoire courant."
102+
Write-Host "$binary est exécutable."
103+
} else {
104+
Write-Host "$binary n'existe pas dans le répertoire courant ou n'est pas exécutable."
105+
echo "::error file=${binary},title=Binary not found::${binary}"
106+
exit 1
107+
}
108+
}
109+
110+
- name: Run the tests using ctest
111+
run: |
112+
ctest
113+

.github/workflows/release.yml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Create Release on New Tag
2+
3+
on:
4+
push:
5+
tags:
6+
- '*'
7+
8+
jobs:
9+
release:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@v3
15+
16+
- name: Get the tag name from the event
17+
id: get_tag_name
18+
run: echo "::set-output name=tag_name::${GITHUB_REF#refs/tags/}"
19+
20+
- name: Create Release
21+
id: create_release
22+
if: steps.get_tag_name.outputs.tag_name != ''
23+
uses: actions/create-release@v1
24+
env:
25+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26+
with:
27+
tag_name: ${{ steps.get_tag_name.outputs.tag_name }}
28+
release_name: Release ${{ steps.get_tag_name.outputs.tag_name }}
29+
body: |
30+
Changes in this Release
31+
- First Change
32+
- Second Change
33+
draft: false
34+
prerelease: false

build.bat

+18-9
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,25 @@ set "VCPKG_URL=https://github.com/microsoft/vcpkg/archive/refs/tags/%VCPKG_TAG%.
1212

1313
set "BUILD_DIR=.\build"
1414

15+
rem Build function
16+
:build
17+
setlocal
18+
rem Use fetched vcpkg to install needed packages
19+
echo "Installing packages"
20+
%VCPKG_EXE% install --triplet %VCPKG_TRIPLET% --feature-flags=manifests raylib boost-core boost-asio boost-thread boost-system boost-filesystem gtest
21+
22+
rem Build the project using cmake
23+
cmake -S . -B %BUILD_DIR% -DCMAKE_TOOLCHAIN_FILE=%VCPKG_TOOLCHAIN% -DVCPKG_TARGET_TRIPLET=%VCPKG_TRIPLET% -DCMAKE_BUILD_TYPE=Release
24+
25+
rem Build the project using builded cmake cache
26+
cmake --build %BUILD_DIR% --config Release
27+
echo Build finished
28+
endlocal
29+
exit /b 0
30+
1531
if exist %VCPKG_PATH% (
1632
echo VCPKG found, building
33+
call :build
1734
) else (
1835
echo VCPKG not found, installing
1936

@@ -40,17 +57,9 @@ if exist %VCPKG_PATH% (
4057
rem if path exist and exe exist
4158
if exist %VCPKG_EXE% (
4259
echo VCPKG installation successful
60+
call :build
4361
) else (
4462
echo VCPKG installation failed, exiting
4563
exit /b 1
4664
)
4765
)
48-
49-
rem Use fetched vcpkg to install needed packages
50-
%VCPKG_EXE% install --triplet %VCPKG_TRIPLET% --feature-flags=manifests raylib boost-core boost-asio boost-thread boost-system boost-filesystem gtest
51-
52-
rem Build the project using cmake
53-
cmake -S . -B %BUILD_DIR% -DCMAKE_TOOLCHAIN_FILE=%VCPKG_TOOLCHAIN% -DVCPKG_TARGET_TRIPLET=%VCPKG_TRIPLET% -DCMAKE_BUILD_TYPE=Release
54-
55-
rem Build the project using builded cmake cache
56-
cmake --build %BUILD_DIR% --config Release

0 commit comments

Comments
 (0)