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