Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

💚 Disable linux/GCC from tests #14

Merged
merged 1 commit into from
Mar 16, 2024
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
26 changes: 13 additions & 13 deletions .github/workflows/deploy_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,19 @@ on:
default: "2.0.14"

jobs:
linux_x86_64_gcc:
uses: ./.github/workflows/deploy.yml
with:
library: ${{ inputs.library }}
repo: ${{ inputs.repo }}
version: ${{ inputs.version }}
conan_version: ${{ inputs.conan_version }}
compiler: gcc
compiler_version: 12.3
compiler_package: ""
arch: x86_64
os: Linux
secrets: inherit
# linux_x86_64_gcc:
# uses: ./.github/workflows/deploy.yml
# with:
# library: ${{ inputs.library }}
# repo: ${{ inputs.repo }}
# version: ${{ inputs.version }}
# conan_version: ${{ inputs.conan_version }}
# compiler: gcc
# compiler_version: 12.3
# compiler_package: ""
# arch: x86_64
# os: Linux
# secrets: inherit
cortex-m0:
uses: ./.github/workflows/deploy.yml
with:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ jobs:
fail-fast: false
matrix:
include:
- toolchain: gcc
compiler_version: 12
os: ubuntu-22.04
standard_library: libstdc++
installations: sudo apt remove clang-tidy && wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - && sudo add-apt-repository "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-17 main" && sudo apt install clang-tidy-17 && sudo ln -sf $(which clang-tidy-17) /usr/bin/clang-tidy
enable_coverage: ${{ inputs.coverage }}
profile_path: profiles/x86_64/linux/
# - toolchain: gcc
# compiler_version: 12
# os: ubuntu-22.04
# standard_library: libstdc++
# installations: sudo apt remove clang-tidy && wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - && sudo add-apt-repository "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-18 main" && sudo apt install clang-tidy-18 && sudo ln -sf $(which clang-tidy-18) /usr/bin/clang-tidy
# enable_coverage: ${{ inputs.coverage }}
# profile_path: profiles/x86_64/linux/

- toolchain: apple-clang
compiler_version: 14
Expand Down