mirror of
https://github.com/SFML/SFML.git
synced 2025-02-18 06:18:01 +08:00
Cache packages downloaded when GitHub actions workflow is run.
This commit is contained in:
parent
90ebf68ba3
commit
25bb6637eb
40
.github/workflows/ci.yml
vendored
40
.github/workflows/ci.yml
vendored
@ -80,9 +80,15 @@ jobs:
|
|||||||
- name: Checkout Code
|
- name: Checkout Code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Get CMake and Ninja
|
||||||
|
uses: lukka/get-cmake@latest
|
||||||
|
with:
|
||||||
|
cmakeVersion: ${{ runner.os == 'Windows' && '3.24' || '3.22' }} # Set to minimum required version (3.24 on Windows and 3.22 elsewhere) as specified in CMakeLists.txt to test compatibility
|
||||||
|
ninjaVersion: latest
|
||||||
|
|
||||||
- name: Install Linux Dependencies
|
- name: Install Linux Dependencies
|
||||||
if: runner.os == 'Linux'
|
if: runner.os == 'Linux'
|
||||||
run: sudo apt-get update && sudo apt-get install ninja-build xorg-dev libxrandr-dev libxcursor-dev libudev-dev libopenal-dev libflac-dev libvorbis-dev libgl1-mesa-dev libegl1-mesa-dev libdrm-dev libgbm-dev xvfb fluxbox
|
run: sudo apt-get update && sudo apt-get install xorg-dev libxrandr-dev libxcursor-dev libudev-dev libopenal-dev libflac-dev libvorbis-dev libgl1-mesa-dev libegl1-mesa-dev libdrm-dev libgbm-dev xvfb fluxbox
|
||||||
|
|
||||||
- name: Install Android Components
|
- name: Install Android Components
|
||||||
if: matrix.platform.name == 'Android'
|
if: matrix.platform.name == 'Android'
|
||||||
@ -102,18 +108,23 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
# Do not run updates until GitHub has fixed all the issues: https://github.com/orgs/Homebrew/discussions/4612
|
# Do not run updates until GitHub has fixed all the issues: https://github.com/orgs/Homebrew/discussions/4612
|
||||||
# brew update
|
# brew update
|
||||||
brew install gcovr ninja || true
|
brew install gcovr || true
|
||||||
|
|
||||||
- name: Install Windows Tools
|
- name: Cache OpenCppCoverage
|
||||||
|
if: matrix.type.name == 'Debug' && runner.os == 'Windows'
|
||||||
|
id: opencppcoverage-cache
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: C:\Program Files\OpenCppCoverage
|
||||||
|
key: opencppcoverage
|
||||||
|
|
||||||
|
- name: Install OpenCppCoverage
|
||||||
uses: nick-fields/retry@v2
|
uses: nick-fields/retry@v2
|
||||||
if: runner.os == 'Windows'
|
if: matrix.type.name == 'Debug' && runner.os == 'Windows' && steps.opencppcoverage-cache.outputs.cache-hit != 'true'
|
||||||
with:
|
with:
|
||||||
max_attempts: 10
|
max_attempts: 10
|
||||||
timeout_minutes: 3
|
timeout_minutes: 3
|
||||||
command: |
|
command: choco install OpenCppCoverage -y
|
||||||
choco install ninja OpenCppCoverage -y
|
|
||||||
echo "C:\Program Files\OpenCppCoverage" >> $env:GITHUB_PATH
|
|
||||||
echo "C:\Program Files\mingw64\bin" >> $env:GITHUB_PATH
|
|
||||||
|
|
||||||
- name: Cache MinGW
|
- name: Cache MinGW
|
||||||
if: matrix.platform.name == 'Windows MinGW'
|
if: matrix.platform.name == 'Windows MinGW'
|
||||||
@ -130,6 +141,12 @@ jobs:
|
|||||||
curl -Lo mingw64.zip https://github.com/brechtsanders/winlibs_mingw/releases/download/12.2.0-16.0.0-10.0.0-msvcrt-r5/winlibs-x86_64-posix-seh-gcc-12.2.0-llvm-16.0.0-mingw-w64msvcrt-10.0.0-r5.zip
|
curl -Lo mingw64.zip https://github.com/brechtsanders/winlibs_mingw/releases/download/12.2.0-16.0.0-10.0.0-msvcrt-r5/winlibs-x86_64-posix-seh-gcc-12.2.0-llvm-16.0.0-mingw-w64msvcrt-10.0.0-r5.zip
|
||||||
unzip -qq -d "C:\Program Files" mingw64.zip
|
unzip -qq -d "C:\Program Files" mingw64.zip
|
||||||
|
|
||||||
|
- name: Add OpenCppCoverage and MinGW to PATH
|
||||||
|
if: runner.os == 'Windows'
|
||||||
|
run: |
|
||||||
|
echo "C:\Program Files\OpenCppCoverage" >> $env:GITHUB_PATH
|
||||||
|
echo "C:\Program Files\mingw64\bin" >> $env:GITHUB_PATH
|
||||||
|
|
||||||
- name: Configure CMake
|
- name: Configure CMake
|
||||||
shell: bash
|
shell: bash
|
||||||
run: cmake --preset dev -DCMAKE_VERBOSE_MAKEFILE=ON ${{matrix.platform.flags}} ${{matrix.config.flags}} ${{matrix.type.flags}}
|
run: cmake --preset dev -DCMAKE_VERBOSE_MAKEFILE=ON ${{matrix.platform.flags}} ${{matrix.config.flags}} ${{matrix.type.flags}}
|
||||||
@ -238,10 +255,15 @@ jobs:
|
|||||||
- name: Checkout Code
|
- name: Checkout Code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Get CMake and Ninja
|
||||||
|
uses: lukka/get-cmake@latest
|
||||||
|
with:
|
||||||
|
cmakeVersion: latest
|
||||||
|
ninjaVersion: latest
|
||||||
|
|
||||||
- name: Install Windows Dependencies
|
- name: Install Windows Dependencies
|
||||||
if: runner.os == 'Windows'
|
if: runner.os == 'Windows'
|
||||||
run: |
|
run: |
|
||||||
choco install ninja
|
|
||||||
curl.exe -o run-clang-tidy https://raw.githubusercontent.com/llvm/llvm-project/llvmorg-15.0.7/clang-tools-extra/clang-tidy/tool/run-clang-tidy.py
|
curl.exe -o run-clang-tidy https://raw.githubusercontent.com/llvm/llvm-project/llvmorg-15.0.7/clang-tools-extra/clang-tidy/tool/run-clang-tidy.py
|
||||||
|
|
||||||
- name: Install Linux Dependencies
|
- name: Install Linux Dependencies
|
||||||
|
Loading…
x
Reference in New Issue
Block a user