Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,15 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
submodules: recursive

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
uses: github/codeql-action/init@v4
with:
languages: c-cpp
build-mode: manual
config: |
#disable-default-queries: true
#queries:
Expand Down Expand Up @@ -62,6 +63,6 @@ jobs:
run: cmake --build cmake_build_dir --target all --config Release -- -j4

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
uses: github/codeql-action/analyze@v4
with:
category: "/language:c-cpp"
23 changes: 17 additions & 6 deletions .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,23 @@ on:
# branches: [ master ]

jobs:
workflow-lint:
name: Workflow lint
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Run actionlint
uses: docker://rhysd/actionlint:1.7.12

ubuntu-build:
name: Ubuntu Build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
submodules: recursive
- name: Create build directory and run CMake
Expand All @@ -30,7 +41,7 @@ jobs:
run: ctest -C Release -VV
working-directory: cmake_build_dir
- name: Create Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: Ubuntu-Artifacts
path: cmake_install_dir/
Expand All @@ -41,7 +52,7 @@ jobs:
runs-on: windows-2022
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
submodules: recursive
- name: Create build directory and run CMake
Expand All @@ -54,7 +65,7 @@ jobs:
run: ctest -C Release -VV
working-directory: cmake_build_dir
- name: Create Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: Windows-Artifacts
path: cmake_install_dir/
Expand All @@ -65,7 +76,7 @@ jobs:
runs-on: macos-14
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
submodules: recursive
- name: Create build directory and run CMake
Expand All @@ -77,7 +88,7 @@ jobs:
run: ctest -C Release -VV
working-directory: cmake_build_dir
- name: Create Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: MacOS-Artifacts
path: cmake_install_dir/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cross-build-arch-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
cross-build:
# The host should always be linux
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
name: Build on ${{ matrix.distro }} ${{ matrix.arch }}

# Run steps on a matrix of 5 arch/distro combinations
Expand All @@ -30,7 +30,7 @@ jobs:
# distro: buster

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v6
- name: Checkout submodules
run: git submodule update --init --recursive
- uses: uraimo/run-on-arch-action@v2.0.7
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
- name: Create Artifacts
# Items placed in /cmake_install_dir in the container will be in
# ${PWD}/cmake_install_dir on the host.
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v7
with:
name: ${{ matrix.distro }}_${{ matrix.arch }}-Artifacts
path: cmake_install_dir/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
submodules: recursive
- name: Create build directory and run CMake
Expand Down