-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Updated the version of clang-format-action from v4.5.0 to v4.11.0. - Changed the GCC version in setup-gcc action from 11 to 13. - Updated the version of cpp-linter-action from v2 to v3. - Removed unnecessary steps related to GCC setup in codeql-analysis.yml and sonarcloud.yml workflows. - Added a step to print the GCC version using "gcc --version" command. Note: These changes improve compatibility and enhance code formatting and linting processes.
- Loading branch information
1 parent
7f7323d
commit dd1dd05
Showing
6 changed files
with
64 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Windows pkgx | ||
|
||
on: [push, pull_request, workflow_dispatch] | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
|
||
env: | ||
VCPKG_DEFAULT_TRIPLET: x64-windows | ||
VCPKG_ROOT: C:\vcpkg | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
submodules: true | ||
|
||
- name: Setup Clang | ||
uses: pkgxdev/setup@v1 | ||
with: | ||
+: clang@16 | ||
|
||
- name: Restore artifacts, or setup vcpkg | ||
uses: lukka/run-vcpkg@v11 | ||
with: | ||
vcpkgGitCommitId: 4d999187501e852f76457306b35627dbe63895cd | ||
|
||
- name: Install vcpkg packages and configure CMake | ||
run: | | ||
vcpkg install | ||
cmake -D CMAKE_BUILD_TYPE=RelWithDebInfo -D ENABLE_TESTING:BOOL=TRUE -D ENABLE_CACHE:BOOL=FALSE -S . -B build | ||
- name: Build | ||
run: cmake --build build |