Skip to content

Commit

Permalink
Update file lists and job version.
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinH committed Feb 17, 2024
1 parent b05a86a commit 86b4d34
Show file tree
Hide file tree
Showing 12 changed files with 120 additions and 65 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
options: --user root

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- run: cmake -H$GITHUB_WORKSPACE -B/home/developer/build -GNinja -DCMAKE_TOOLCHAIN_FILE=$ANDROID_NDK_HOME/build/cmake/android.toolchain.cmake -DANDROID_ABI=${{ matrix.abi }} -DANDROID_PLATFORM=${{ matrix.platform }} -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clang-analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- run: sudo apt-get update -yq

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clang-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: DoozyX/clang-format-lint-action@v0.15
with:
extensions: 'hpp,cpp'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clang-tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- run: sudo apt-get update -yq

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/code-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- run: cmake -E make_directory build

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
CXX: ${{ matrix.compiler }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- run: cmake -E make_directory build

Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
CXX: ${{ matrix.compiler }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- run: sudo apt-get update -y

Expand All @@ -94,7 +94,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- run: cmake -E make_directory build

Expand All @@ -120,7 +120,7 @@ jobs:
CXX: clang++

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- run: cmake -E make_directory build

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: maxim-lobanov/setup-xcode@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sanitizer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
CXX: ${{ matrix.cxx }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- run: cmake -E make_directory build

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- run: cmake -E make_directory build

Expand All @@ -43,7 +43,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- run: cmake -E make_directory build

Expand All @@ -66,7 +66,7 @@ jobs:
runs-on: windows-2019

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- run: cmake -E make_directory build

Expand All @@ -89,7 +89,7 @@ jobs:
runs-on: windows-2019

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- run: cmake -E make_directory build

Expand Down
9 changes: 4 additions & 5 deletions src/example/pegtl/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,38 +1,37 @@
cmake_minimum_required(VERSION 3.8...3.19)

set(example_sources
abnf2pegtl.cpp
analyze.cpp
calculator.cpp
chomsky_hierarchy.cpp
csv1.cpp
csv2.cpp
dispatch.cpp
dynamic_match.cpp
expression.cpp
hello_world.cpp
indent_aware.cpp
iri.cpp
json_analyze.cpp
json_ast.cpp
json_build.cpp
json_count.cpp
json_coverage.cpp
json_parse.cpp
json_print_debug.cpp
json_print_names.cpp
json_tokenize.cpp
json_trace.cpp
lua53_analyze.cpp
lua53_parse.cpp
modulus_match.cpp
parse_tree.cpp
parse_tree_user_state.cpp
proto3.cpp
random_order.cpp
recover.cpp
s_expression.cpp
sum.cpp
symbol_table.cpp
token_input.cpp
token_input_1.cpp
token_input_2.cpp
unescape.cpp
uri.cpp
uri_print_debug.cpp
Expand Down
Loading

0 comments on commit 86b4d34

Please sign in to comment.