Skip to content

Exclude vcpkg installer from linting #57

Exclude vcpkg installer from linting

Exclude vcpkg installer from linting #57

Workflow file for this run

name: ci
env:
CTEST_NO_TESTS_ACTION: error
HOMEBREW_NO_INSTALL_CLEANUP: 1
on:
push:
paths:
- "**.c"
- "**.cc"
- "**.cpp"
- "**.h"
- "**/CMakeLists.txt"
- "**.cmake"
- "**.json"
- ".github/workflows/ci.yml"
jobs:
build:
name: Build SDK
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
statuses: write
steps:
- name: Checkout
uses: actions/[email protected]
- name: Install extra packages
run: |
sudo apt-get update
sudo apt-get install -y autoconf autoconf-archive build-essential
- name: Setup vcpkg
uses: lukka/run-vcpkg@v11
with:
runVcpkgInstall: false
- name: Setup cmake
uses: lukka/get-cmake@latest
- name: Build
uses: lukka/run-cmake@v10
with:
configurePreset: ci
buildPreset: ninja
- name: Run Tests
run: build/tests/iggy_cpp_test
lint:
name: Lint
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
statuses: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
# super-linter needs the full git history to get the
# list of files that changed across commits
fetch-depth: 0
- name: Super-linter
uses: super-linter/[email protected] # x-release-please-version
env:
FILTER_REGEX_EXCLUDE: .devcontainer/install-vcpkg.sh
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}