Skip to content

Commit

Permalink
Merge pull request #36 from lemire/updateci
Browse files Browse the repository at this point in the history
updating ci
  • Loading branch information
lemire authored Jun 10, 2024
2 parents 7254cff + 6447e5d commit c4d6e28
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 59 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/alpine.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: Alpine Linux
'on':
- push
- pull_request
on: [push, pull_request]

jobs:
ubuntu-build:
runs-on: ubuntu-latest
Expand Down
38 changes: 0 additions & 38 deletions .github/workflows/cmake.yml

This file was deleted.

17 changes: 2 additions & 15 deletions .github/workflows/ubuntu18.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,17 @@ on: [push, pull_request]

jobs:
ubuntu-build:
runs-on: ubuntu-18.04
strategy:
fail-fast: false
matrix:
include:
- {cxx: -DCMAKE_CXX_COMPILER=g++-5, arch: }
- {cxx: -DCMAKE_CXX_COMPILER=g++-6, arch: }
- {cxx: , arch: } # default=gcc7
- {cxx: , arch: -DCMAKE_CXX_FLAGS="-m32"} # default=gcc7
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
- name: Setup cmake
uses: jwlawson/actions-setup-cmake@v1.4
with:
cmake-version: '3.11.x'
- name: Install older compilers
run: |
sudo -E dpkg --add-architecture i386
sudo -E apt-get update
sudo -E apt-get install -y --force-yes g++-5 g++-6 g++-5-multilib g++-6-multilib g++-multilib linux-libc-dev:i386 libc6:i386 libc6-dev:i386 libc6-dbg:i386
- name: Prepare build dir
run: mkdir build
- name: Configure
run: cd build && cmake ${{matrix.cxx}} ${{matrix.arch}} ..
run: cmake -B build
- name: Build
run: cmake --build build
- name: Run basic tests
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name: VS16-CI
name: VS17-CI

on: [push, pull_request]

jobs:
ci:
name: windows-vs16
name: windows-vs17
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
include:
- {gen: Visual Studio 16 2019, arch: x64}
- {gen: Visual Studio 17 2022, arch: x64}
steps:
- name: checkout
uses: actions/checkout@v2
Expand Down
File renamed without changes.

0 comments on commit c4d6e28

Please sign in to comment.