Skip to content

Commit 78cfa29

Browse files
committed
Remove bootstrap setting
1 parent 028ede9 commit 78cfa29

2 files changed

Lines changed: 2 additions & 16 deletions

File tree

.github/workflows/main.yml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -29,27 +29,12 @@ jobs:
2929
shell: bash
3030
run: echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
3131

32-
- name: Configure Bootstrap CMake
33-
run: >
34-
cmake -B "${{ steps.strings.outputs.build-output-dir }}_flex"
35-
-DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }}
36-
-DCMAKE_C_COMPILER=${{ matrix.c_compiler }}
37-
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
38-
-DPXML_USE_BISON=ON
39-
-S ${{ github.workspace }}
40-
41-
- name: Bootstrap build with flex
42-
run: >
43-
cmake --build "${{ steps.strings.outputs.build-output-dir }}_flex" --config ${{ matrix.build_type }} -j ${{matrix.parallel}}
44-
&& cd "${{ steps.strings.outputs.build-output-dir }}_flex" && sudo make install
45-
4632
- name: Configure CMake
4733
run: >
4834
cmake -B "${{ steps.strings.outputs.build-output-dir }}"
4935
-DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }}
5036
-DCMAKE_C_COMPILER=${{ matrix.c_compiler }}
5137
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
52-
-DPXML_USE_BISON=OFF
5338
-S ${{ github.workspace }}
5439
5540
- name: Build

src/pxml/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1+
set(PARGEN_PATH "pargen" CACHE PATH "Path of pargen program")
12
add_custom_target(update_pxml
2-
pargen ${CMAKE_CURRENT_LIST_DIR}/pxml.pxml
3+
${PARGEN_PATH} ${CMAKE_CURRENT_LIST_DIR}/pxml.pxml
34
WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}/../lib
45
)

0 commit comments

Comments
 (0)