Skip to content

Commit

Permalink
Merge pull request #1671 from YehezkelShB/Ubuntu16.04NotAvailable
Browse files Browse the repository at this point in the history
Move CI from Ubuntu 16.04 to 18.04
  • Loading branch information
ericniebler committed Nov 2, 2021
2 parents 61c0423 + 43bc3a0 commit 83783f5
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/range-v3-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,39 +18,39 @@ jobs:
# GCC-6
- {
name: "Linux GCC 6 Debug (C++14)", artifact: "Linux.tar.xz",
os: ubuntu-16.04,
os: ubuntu-18.04,
build_type: Debug,
cc: "gcc-6", cxx: "g++-6",
cxx_standard: 14,
cxx_concepts: false
}
- {
name: "Linux GCC 6 Release (C++14)", artifact: "Linux.tar.xz",
os: ubuntu-16.04,
os: ubuntu-18.04,
build_type: RelWithDebInfo,
cc: "gcc-6", cxx: "g++-6",
cxx_standard: 14,
cxx_concepts: false
}
- {
name: "Linux GCC 6 Debug (C++17)", artifact: "Linux.tar.xz",
os: ubuntu-16.04,
os: ubuntu-18.04,
build_type: Debug,
cc: "gcc-6", cxx: "g++-6",
cxx_standard: 17,
cxx_concepts: false
}
- {
name: "Linux GCC 6 Release (C++17)", artifact: "Linux.tar.xz",
os: ubuntu-16.04,
os: ubuntu-18.04,
build_type: RelWithDebInfo,
cc: "gcc-6", cxx: "g++-6",
cxx_standard: 17,
cxx_concepts: false
}
- {
name: "Linux GCC 6 Release (C++17, Concepts)", artifact: "Linux.tar.xz",
os: ubuntu-16.04,
os: ubuntu-18.04,
build_type: RelWithDebInfo,
cc: "gcc-6", cxx: "g++-6",
cxx_standard: 17,
Expand All @@ -59,39 +59,39 @@ jobs:
# GCC-7
- {
name: "Linux GCC 7 Debug (C++14)", artifact: "Linux.tar.xz",
os: ubuntu-16.04,
os: ubuntu-18.04,
build_type: Debug,
cc: "gcc-7", cxx: "g++-7",
cxx_standard: 14,
cxx_concepts: false
}
- {
name: "Linux GCC 7 Release (C++14)", artifact: "Linux.tar.xz",
os: ubuntu-16.04,
os: ubuntu-18.04,
build_type: RelWithDebInfo,
cc: "gcc-7", cxx: "g++-7",
cxx_standard: 14,
cxx_concepts: false
}
- {
name: "Linux GCC 7 Debug (C++17)", artifact: "Linux.tar.xz",
os: ubuntu-16.04,
os: ubuntu-18.04,
build_type: Debug,
cc: "gcc-7", cxx: "g++-7",
cxx_standard: 17,
cxx_concepts: false
}
- {
name: "Linux GCC 7 Release (C++17)", artifact: "Linux.tar.xz",
os: ubuntu-16.04,
os: ubuntu-18.04,
build_type: RelWithDebInfo,
cc: "gcc-7", cxx: "g++-7",
cxx_standard: 17,
cxx_concepts: false
}
- {
name: "Linux GCC 7 Release (C++17, Concepts)", artifact: "Linux.tar.xz",
os: ubuntu-16.04,
os: ubuntu-18.04,
build_type: RelWithDebInfo,
cc: "gcc-7", cxx: "g++-7",
cxx_standard: 17,
Expand All @@ -100,39 +100,39 @@ jobs:
# GCC-8
- {
name: "Linux GCC 8 Debug (C++14)", artifact: "Linux.tar.xz",
os: ubuntu-16.04,
os: ubuntu-18.04,
build_type: Debug,
cc: "gcc-8", cxx: "g++-8",
cxx_standard: 14,
cxx_concepts: false
}
- {
name: "Linux GCC 8 Release (C++14)", artifact: "Linux.tar.xz",
os: ubuntu-16.04,
os: ubuntu-18.04,
build_type: RelWithDebInfo,
cc: "gcc-8", cxx: "g++-8",
cxx_standard: 14,
cxx_concepts: false
}
- {
name: "Linux GCC 8 Debug (C++17)", artifact: "Linux.tar.xz",
os: ubuntu-16.04,
os: ubuntu-18.04,
build_type: Debug,
cc: "gcc-8", cxx: "g++-8",
cxx_standard: 17,
cxx_concepts: false
}
- {
name: "Linux GCC 8 Release (C++17)", artifact: "Linux.tar.xz",
os: ubuntu-16.04,
os: ubuntu-18.04,
build_type: RelWithDebInfo,
cc: "gcc-8", cxx: "g++-8",
cxx_standard: 17,
cxx_concepts: false
}
- {
name: "Linux GCC 8 Release (C++17, Concepts)", artifact: "Linux.tar.xz",
os: ubuntu-16.04,
os: ubuntu-18.04,
build_type: RelWithDebInfo,
cc: "gcc-8", cxx: "g++-8",
cxx_standard: 17,
Expand Down Expand Up @@ -198,7 +198,7 @@ jobs:
# Clang-5.0
- {
name: "Linux Clang 5.0 Debug (C++14 / libc++ / ASAN)", artifact: "Linux.tar.xz",
os: ubuntu-16.04,
os: ubuntu-18.04,
build_type: Debug,
cc: "clang-5.0", cxx: "clang++-5.0",
cxx_standard: 14,
Expand All @@ -207,7 +207,7 @@ jobs:
}
- {
name: "Linux Clang 5.0 Debug (C++17 / ASAN)", artifact: "Linux.tar.xz",
os: ubuntu-16.04,
os: ubuntu-18.04,
build_type: Debug,
cc: "clang-5.0", cxx: "clang++-5.0",
cxx_standard: 17,
Expand Down

0 comments on commit 83783f5

Please sign in to comment.