Browse Source

Revert "CI: use latest images (#2055)" (#2056)

This reverts commit 0f2af1edfd493d28a399e64e91f54913b8547e8f, reversing
changes made to 90220323f3.
master
Alexander Epaneshnikov 5 months ago
parent
commit
94b127cf7a
No account linked to committer's email address
3 changed files with 14 additions and 10 deletions
  1. 2
    2
      .github/workflows/autoconf.yml
  2. 11
    7
      .github/workflows/ci.yml
  3. 1
    1
      .github/workflows/windows.yml

+ 2
- 2
.github/workflows/autoconf.yml View File

@@ -21,9 +21,9 @@ jobs:

include:
- os: ubuntu
osver: ubuntu-latest
osver: 22.04
- os: macos
osver: macos-latest
osver: 14

- arch: i386
archcflags: "-m32 -msse2 -mfpmath=sse"

+ 11
- 7
.github/workflows/ci.yml View File

@@ -22,14 +22,14 @@ jobs:

include:
- os: ubuntu
osver: ubuntu-latest
osver: 22.04
sys: linux-gnu
- os: macos
osver: macos-latest
sys: apple-darwin21
osver: 14
sys: apple-darwin23
- os: macos
compiler: clang
sys: apple-darwin21.6.0
sys: apple-darwin23.6.0

- compiler: clang
compiler_flags: "-fdebug-default-version=4"
@@ -88,7 +88,7 @@ jobs:

- config: "release-dyn"
settings: "-DCMAKE_BUILD_TYPE:STRING=RelWithDebInfo -DBUILD_SHARED_LIBS:BOOL=ON"
exclude:
- os: macos
arch: i386
@@ -99,6 +99,10 @@ jobs:
- os: macos
arch: riscv64

# fixme
- os: macos
compiler: gcc

- os: macos
config: valgrind # Not supported on macOS

@@ -132,7 +136,7 @@ jobs:
config: lsan
- arch: riscv64
config: lsan
# Thread sanitizer is partially unavailable
- arch: i386
config: tsan
@@ -235,4 +239,4 @@ jobs:
- name: test
run: |
${{ matrix.config_env }} ${{ matrix.runenv }} cmake --build build --target tests
${{ matrix.config_env }} ${{ matrix.runenv }} ctest --test-dir build -T test -j8 --output-on-failure
${{ matrix.config_env }} ${{ matrix.runenv }} ctest --test-dir build -T test -j8 --output-on-failure

+ 1
- 1
.github/workflows/windows.yml View File

@@ -30,4 +30,4 @@ jobs:
- name: make
run: cmake --build build --config ${{ matrix.config }}
- name: make check
run: ctest --test-dir build -T test -C ${{ matrix.config }} -j8 --output-on-failure
run: ctest --test-dir build -T test -C ${{ matrix.config }} -j8 --output-on-failure

Loading…
Cancel
Save