|
| 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 | +
|
0 commit comments