Skip to content

Commit

Permalink
Remove ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION
Browse files Browse the repository at this point in the history
  • Loading branch information
sbmueller committed Nov 12, 2024
1 parent 6c259b5 commit aa149f8
Showing 1 changed file with 18 additions and 23 deletions.
41 changes: 18 additions & 23 deletions .github/workflows/c.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,30 +12,30 @@ on:
- "c/**"
- .github/workflows/c.yaml
jobs:

ubuntu-lts:

strategy:
matrix:
build_type: [ "Debug", "Release" ]
compiler: [
{ c: "gcc-6", cxx: "g++-6", package: "gcc-6 g++-6" },
{ c: "clang-6.0", cxx: "clang++-6.0", package: "clang-6.0" }
]
build_shared_libraries: [ true, false ]
exclude: [
{ build_type: "Debug", compiler: { c: "gcc-6", cxx: "g++-6" }, build_shared_libraries: false }
]
build_type: ["Debug", "Release"]
compiler:
[
{ c: "gcc-6", cxx: "g++-6", package: "gcc-6 g++-6" },
{ c: "clang-6.0", cxx: "clang++-6.0", package: "clang-6.0" },
]
build_shared_libraries: [true, false]
exclude:
[
{
build_type: "Debug",
compiler: { c: "gcc-6", cxx: "g++-6" },
build_shared_libraries: false,
},
]

name: "Ubuntu 18.04 (Build: ${{ matrix.build_type }}, Compilers: ${{ matrix.compiler.c }}/${{ matrix.compiler.cxx }}, Shared Library: ${{ matrix.build_shared_libraries }})"

runs-on: ubuntu-latest
container: ubuntu:18.04
env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true

steps:

- name: Setup
run: |
apt-get -qq update
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
-DBUILD_EXAMPLES=true
- name: Build
run: cmake --build build --parallel
run: cmake --build build --parallel

- name: Example
run: cmake --build build --parallel --target examples
Expand Down Expand Up @@ -112,7 +112,6 @@ jobs:
cmake -S c/test_package -B c/test_package/build -DCMAKE_PREFIX_PATH="${{ github.workspace }}/install"
cmake --build c/test_package/build
big-endian:
name: Test Big Endian
runs-on: ubuntu-20.04
Expand Down Expand Up @@ -155,7 +154,6 @@ jobs:
run: |
bazel test //...
asan:
name: ASAN
runs-on: ubuntu-20.04
Expand All @@ -176,7 +174,6 @@ jobs:
run: |
bazel test --config=asan //...
ubsan:
name: UBSAN
runs-on: ubuntu-20.04
Expand All @@ -197,12 +194,11 @@ jobs:
run: |
bazel test --config=ubsan //...
windows-2019:
strategy:
matrix:
generator: [ "MinGW Makefiles", "Visual Studio 16 2019" ]
build_shared_libraries: [ true, false ]
generator: ["MinGW Makefiles", "Visual Studio 16 2019"]
build_shared_libraries: [true, false]
name: "Windows 2019 (Generator: ${{ matrix.generator }}, Shared Library: ${{ matrix.build_shared_libraries }})"
runs-on: windows-2019
steps:
Expand Down Expand Up @@ -237,4 +233,3 @@ jobs:
run: |
cmake -G "${{ matrix.generator }}" -S c/test_package -B c/test_package/build -DCMAKE_PREFIX_PATH="${{ github.workspace }}/install"
cmake --build c/test_package/build

0 comments on commit aa149f8

Please sign in to comment.