From fc886004d88daca6c2493fb81351b196b672f56d Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Tue, 1 Oct 2024 13:56:13 +0300 Subject: [PATCH] no message --- .github/workflows/continuous_integration.yml | 32 ++++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/continuous_integration.yml b/.github/workflows/continuous_integration.yml index 6fdfe65..749df53 100644 --- a/.github/workflows/continuous_integration.yml +++ b/.github/workflows/continuous_integration.yml @@ -32,30 +32,30 @@ jobs: toolchain: - name: Linux Clang - os: ubuntu-22.04 + os: ubuntu-24.04 # TODO: find the way to avoid duplication of dependencies command deps: sudo apt update && sudo apt install libflac-dev libmikmod-dev libmpg123-dev libopusfile-dev libsdl2-dev libvorbis-dev libxmp-dev cmake_args: -DCMAKE_C_COMPILER=clang - name: Linux GCC - os: ubuntu-22.04 + os: ubuntu-24.04 # TODO: find the way to avoid duplication of dependencies command deps: sudo apt update && sudo apt install libflac-dev libmikmod-dev libmpg123-dev libopusfile-dev libsdl2-dev libvorbis-dev libxmp-dev - - name: macOS Intel - os: macos-13 - deps: brew install flac libmikmod libvorbis libxmp mpg123 opusfile sdl2 - - - name: macOS ARM - os: macos-14 - deps: brew install flac libmikmod libvorbis libxmp mpg123 opusfile sdl2 - - - name: MSVC 32-bit - os: windows-2022 - cmake_args: -A Win32 - - - name: MSVC 64-bit - os: windows-2022 +# - name: macOS Intel +# os: macos-13 +# deps: brew install flac libmikmod libvorbis libxmp mpg123 opusfile sdl2 +# +# - name: macOS ARM +# os: macos-14 +# deps: brew install flac libmikmod libvorbis libxmp mpg123 opusfile sdl2 +# +# - name: MSVC 32-bit +# os: windows-2022 +# cmake_args: -A Win32 +# +# - name: MSVC 64-bit +# os: windows-2022 steps: - uses: actions/checkout@v4