Skip to content

Commit

Permalink
suppression du sous module vcpkg
Browse files Browse the repository at this point in the history
  • Loading branch information
yobeonline committed Jan 6, 2024
1 parent 944651c commit fef4220
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 14 deletions.
18 changes: 8 additions & 10 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ jobs:
matrix:
config: [Release, Debug]
os: [ubuntu-latest, windows-latest]
gcc: [13]
steps:
- uses: actions/checkout@v2
with:
Expand All @@ -16,18 +17,15 @@ jobs:
- name: Get latest cmake
uses: lukka/get-cmake@latest

- name: set compiler
if: matrix.os == 'ubuntu-latest'
run: |
echo "CXX=g++-10" >> $GITHUB_ENV
echo "CC=gcc-10" >> $GITHUB_ENV
- name: Configure Linux
if: matrix.os == 'ubuntu-latest'
- name: Configure (!Windows)
env:
CC: gcc-${{ matrix.gcc }}
CXX: g++-${{ matrix.gcc }}
if: runner.os != 'Windows'
run: cmake -DCMAKE_BUILD_TYPE=${{ matrix.config }} --preset gcc-dev -B build -S .

- name: Configure Windows
if: matrix.os == 'windows-latest'
- name: Configure (Windows)
if: runner.os == 'Windows'
run: cmake -DCMAKE_BUILD_TYPE=${{ matrix.config }} --preset msvc-dev -B build -S .

- name: Build
Expand Down
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

1 change: 0 additions & 1 deletion vcpkg
Submodule vcpkg deleted from 6f7ffe
8 changes: 8 additions & 0 deletions vcpkg-configuration.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg-configuration.schema.json",
"default-registry": {
"kind": "git",
"repository": "https://github.com/microsoft/vcpkg",
"baseline": "c8696863d371ab7f46e213d8f5ca923c4aef2a00"
}
}

0 comments on commit fef4220

Please sign in to comment.