Skip to content

Bump hendrikmuhs/ccache-action from 1.2.16 to 1.2.17 in /.github/workflows #557

Bump hendrikmuhs/ccache-action from 1.2.16 to 1.2.17 in /.github/workflows

Bump hendrikmuhs/ccache-action from 1.2.16 to 1.2.17 in /.github/workflows #557

name: Smoketest / Informative / openSUSE Leap
on:
pull_request:
jobs:
test:
name: Compilers
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
suse:
# 15.4 is the oldest openSUSE Leap with a new enough clang
- "15.4"
- "15.5"
- "15.6"
# 15.7 is expected in 2025-06
# 15.8 is expected in 2026-06
compiler:
- g++
- clang++
build-type:
- Release
- Debug
container: opensuse/leap:${{ matrix.suse }}
steps:
- name: Install Dependencies
run: |
zypper -q --non-interactive update
zypper -q --non-interactive install \
tar \
gzip \
git \
gcc-c++ \
clang \
llvm-gold-provider \
cmake \
make \
ccache \
libboost_filesystem-devel \
libboost_locale-devel \
libboost_regex-devel \
libboost_system-devel \
cairo-devel \
glew-devel \
glm-devel \
boost-devel \
libicu-devel \
libSDL2_image-devel \
libSDL2_mixer-devel \
libSDL2_ttf-devel \
libSDL2-devel \
libvorbis-devel \
libjack
- name: Checkout Anura
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
submodules: true
- name: Set ccache up
uses: hendrikmuhs/ccache-action@a1209f81afb8c005c13b4296c32e363431bffea5 # v1.2.17
with:
key: ${{ github.job }}-opensuse-leap-${{ matrix.suse }}-${{ matrix.compiler }}-${{ matrix.build-type }}
- name: Build Prep Anura
run: |
cmake buildsystem/linux-dynamic \
-D CMAKE_CXX_COMPILER="${{ matrix.compiler }}" \
-D CMAKE_BUILD_TYPE="${{ matrix.build-type }}"
- name: Build Anura
run: |
# Compile with number of available hyperthreads
make -j "$(getconf _NPROCESSORS_ONLN)"
- name: Run Unit Tests
run: ./anura --tests