Browse Source

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

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

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

@@ -21,10 +21,10 @@ jobs:

include:
- os: ubuntu
osver: ubuntu-latest
osver: 22.04
- os: macos
osver: macos-latest
osver: 12
- arch: i386
archcflags: "-m32 -msse2 -mfpmath=sse"


+ 6
- 6
.github/workflows/ci.yml View File

@@ -22,15 +22,15 @@ jobs:

include:
- os: ubuntu
osver: ubuntu-latest
osver: 22.04
sys: linux-gnu
- os: macos
osver: macos-latest
osver: 12
sys: apple-darwin21
- os: macos
compiler: clang
sys: apple-darwin21.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
@@ -132,7 +132,7 @@ jobs:
config: lsan
- arch: riscv64
config: lsan
# Thread sanitizer is partially unavailable
- arch: i386
config: tsan
@@ -235,4 +235,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