We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddf5ef6 commit 72f4204Copy full SHA for 72f4204
.github/workflows/main.yaml
@@ -46,8 +46,14 @@ jobs:
46
runs-on: ubuntu-latest
47
48
steps:
49
- - name: install dependencies
50
- run: sudo apt install libxerces-c-dev
+ - name: build xerces
+ run: |
51
+ git clone https://github.com/xerces/xerces-c.git
52
+ cd xerces-c
53
+ mkdir build
54
+ cd build
55
+ cmake .. -DCMAKE_CXX_STANDARD=98 -DCMAKE_CXX_STANDARD_REQUIRED=ON -DCMAKE_CXX_EXTENSIONS=OFF
56
+ make install
57
- name: Checkout repo
58
uses: actions/checkout@v3
59
- name: Test C++
0 commit comments