From 02833d45b1ca1947ccb5e7a24142d71b80a9d7c1 Mon Sep 17 00:00:00 2001 From: Luis Antonio Obis Aparicio Date: Mon, 4 Dec 2023 12:50:13 -0600 Subject: [PATCH] clone correctly --- .github/workflows/build-test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-test.yaml b/.github/workflows/build-test.yaml index 60bcec6..55fd266 100644 --- a/.github/workflows/build-test.yaml +++ b/.github/workflows/build-test.yaml @@ -50,8 +50,8 @@ jobs: - name: Build and Install Xerces-C if: steps.cache-xerces.outputs.cache-hit != 'true' run: | - git clone https://github.com/apache/xerces-c.git xerces-c - git -C xerces-c checkout tags/v3.2.4 + git clone https://github.com/apache/xerces-c.git xerces-source + git -C xerces-source checkout tags/v3.2.4 mkdir -p ${{ github.workspace }}/xerces-source/build cd ${{ github.workspace }}/xerces-source/build cmake .. -DCMAKE_INSTALL_PREFIX=${{ github.workspace }}/xerces -DCMAKE_CXX_STANDARD=20 -DXERCESC_BUILD_STATIC=ON -DXERCESC_BUILD_SHARED=OFF -DCMAKE_BUILD_TYPE=Release