Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

format source code #4

Merged
merged 5 commits into from
Jul 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 49 additions & 25 deletions .github/workflows/linux_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,39 +18,54 @@ jobs:
matrix:
cxx:
# - g++-6
- g++-7
- g++-8
# - g++-7
# - g++-8
- g++-9
- g++-10
- clang++-6.0
- clang++-7
- clang++-8
- clang++-9
- clang++-10
- g++-11
- g++-12
# - clang++-6.0
# - clang++-7
# - clang++-8
# - clang++-9
# - clang++-10
- clang++-12
- clang++-13
- clang++-14
build_type: [Debug, Release]
std: [14]
include:
# cannot be installed on ubuntu-20.04 be default?
# - cxx: g++-6
# other_pkgs: g++-6
- cxx: g++-7
other_pkgs: g++-7
- cxx: g++-8
other_pkgs: g++-8
# - cxx: g++-7
# other_pkgs: g++-7
# - cxx: g++-8
# other_pkgs: g++-8
- cxx: g++-9
other_pkgs: g++-9
- cxx: g++-10
other_pkgs: g++-10
- cxx: clang++-6.0
other_pkgs: clang-6.0
- cxx: clang++-7
other_pkgs: clang-7
- cxx: clang++-8
other_pkgs: clang-8
- cxx: clang++-9
other_pkgs: clang-9
- cxx: clang++-10
other_pkgs: clang-10
- cxx: g++-11
other_pkgs: g++-11
- cxx: g++-12
other_pkgs: g++-12
# - cxx: clang++-6.0
# other_pkgs: clang-6.0
# - cxx: clang++-7
# other_pkgs: clang-7
# - cxx: clang++-8
# other_pkgs: clang-8
# - cxx: clang++-9
# other_pkgs: clang-9
# - cxx: clang++-10
# other_pkgs: clang-10
- cxx: clang++-12
other_pkgs: clang-12
- cxx: clang++-13
other_pkgs: clang-13
- cxx: clang++-14
other_pkgs: clang-14
# Clang 6 + C++17
# does not work with the default libstdc++ version thanks
# to a disagreement on variant implementation.
Expand All @@ -63,14 +78,23 @@ jobs:
# std: 17
# other_pkgs: clang-6.0
# Clang 10 + C++17
- cxx: clang++-10
# - cxx: clang++-10
# build_type: Debug
# std: 17
# other_pkgs: clang-10
# - cxx: clang++-10
# build_type: Release
# std: 17
# other_pkgs: clang-10
# Clang 14 + C++17
- cxx: clang++-14
build_type: Debug
std: 17
other_pkgs: clang-10
- cxx: clang++-10
other_pkgs: clang-14
- cxx: clang++-14
build_type: Release
std: 17
other_pkgs: clang-10
other_pkgs: clang-14

steps:
- uses: actions/checkout@v2
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/win_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
build_type: [ Debug, Release ]
std: [ 14 ]

runs-on: windows-2016
runs-on: windows-2022
steps:
- uses: actions/checkout@v2

Expand All @@ -27,11 +27,11 @@ jobs:

# Install dependencies
- name: Install boost
uses: MarkusJx/install-boost@v2.0.0
uses: MarkusJx/install-boost@v2.4.4
id: install-boost
with:
boost_version: 1.76.0
platform_version: 2016
boost_version: 1.78.0
platform_version: 2022

- name: Configure cmake
working-directory: ${{runner.workspace}}
Expand Down
2 changes: 1 addition & 1 deletion src/include/cpp_properties/lexer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ namespace token
ID_VALUE_ESCAPE_CHAR,
ID_VALUE_UNICODE,
ID_VALUE_BAD_UNICODE,
ID_VALUE_CR,
ID_VALUE_CR,
ID_VALUE_LF,
ID_VALUE_EOL,
ID_VALUE_LINE_BREAK_CR,
Expand Down
Loading