From 765cb514a93e7e01910a982ab1275c057fdc6e54 Mon Sep 17 00:00:00 2001 From: MichaelBrunner Date: Fri, 16 Aug 2024 15:56:34 +0200 Subject: [PATCH 1/2] ENH: Ensure that the vcpkg directory is not being accessed by another process --- .github/workflows/build-matrix.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-matrix.yml b/.github/workflows/build-matrix.yml index fa5087a..3b847ba 100644 --- a/.github/workflows/build-matrix.yml +++ b/.github/workflows/build-matrix.yml @@ -16,8 +16,8 @@ jobs: compiler: msvc - os: ubuntu-latest compiler: gcc -# - os: macos-latest -# compiler: clang + # - os: macos-latest + # compiler: clang steps: - name: Checkout code uses: actions/checkout@v4.1.4 @@ -45,4 +45,4 @@ jobs: - name: Test run: | - cmake --build build --target test + cmake --build build --target test \ No newline at end of file From 3ce7673dd23abdc5772d68c195f92a9ff357e2c4 Mon Sep 17 00:00:00 2001 From: MichaelBrunner Date: Fri, 16 Aug 2024 15:58:22 +0200 Subject: [PATCH 2/2] ENH: start with a windows only build --- .github/workflows/build-matrix.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-matrix.yml b/.github/workflows/build-matrix.yml index 3b847ba..8a781b9 100644 --- a/.github/workflows/build-matrix.yml +++ b/.github/workflows/build-matrix.yml @@ -10,12 +10,12 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [windows-latest, ubuntu-latest] # , macos-latest + os: [windows-latest] # , ubuntu-latest , macos-latest include: - os: windows-latest compiler: msvc - - os: ubuntu-latest - compiler: gcc +# - os: ubuntu-latest +# compiler: gcc # - os: macos-latest # compiler: clang steps: