mirror of
https://github.com/fastfloat/fast_float.git
synced 2025-12-06 16:56:57 +08:00
Merge pull request #155 from fastfloat/dlemire/adding_ubuntu22
Adding two new Ubuntu 22 runners in CI
This commit is contained in:
commit
cda3946a50
18
.github/workflows/ubuntu22-clang.yml
vendored
Normal file
18
.github/workflows/ubuntu22-clang.yml
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
name: Ubuntu 22.04 CI (clang 14)
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
ubuntu-build:
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Install clang++-14
|
||||
run: sudo apt-get install -y clang++-14
|
||||
- name: Use cmake
|
||||
run: |
|
||||
mkdir build &&
|
||||
cd build &&
|
||||
CXX=clang++-14 cmake -DFASTFLOAT_TEST=ON .. &&
|
||||
cmake --build . &&
|
||||
ctest --output-on-failure
|
||||
16
.github/workflows/ubuntu22.yml
vendored
Normal file
16
.github/workflows/ubuntu22.yml
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
name: Ubuntu 22.04 CI
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
ubuntu-build:
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Use cmake
|
||||
run: |
|
||||
mkdir build &&
|
||||
cd build &&
|
||||
cmake -DFASTFLOAT_TEST=ON .. &&
|
||||
cmake --build . &&
|
||||
ctest --output-on-failure
|
||||
Loading…
x
Reference in New Issue
Block a user