From b80060248d687250a3389f901f62f323de6b6440 Mon Sep 17 00:00:00 2001 From: Matthew Burket Date: Mon, 2 Dec 2024 10:41:50 -0600 Subject: [PATCH] Remove OL7 from CI GitHub has finally removed Node16 support. All actions must run on Node20. OL7 GLIBC is too old to run Node20. Since this will be always failing it is time to remove it. --- .github/workflows/gate_ol7.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/gate_ol7.yml diff --git a/.github/workflows/gate_ol7.yml b/.github/workflows/gate_ol7.yml deleted file mode 100644 index 4435feb24ff..00000000000 --- a/.github/workflows/gate_ol7.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Gate OL7 -on: - push: - branches: [ '*', '!stabilization*', '!stable*', '!master' ] - pull_request: - branches: [ 'master', 'stabilization*' ] -concurrency: - group: ${{ github.workflow }}-${{ github.event.number || github.run_id }} - cancel-in-progress: true -env: - ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true -jobs: - validate-ol7: - name: Build, Test on Oracle Linux 7 (Container) - runs-on: ubuntu-latest - container: - image: oraclelinux:7.9 - steps: - - name: Install Deps - run: yum install -y cmake make openscap-utils PyYAML libxslt xml-common python-jinja2 python-setuptools openscap openscap-scanner - - name: Checkout - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3 - - name: Build - run: |- - ./build_product ol7 - env: - ADDITIONAL_CMAKE_OPTIONS: "-DSSG_OVAL_SCHEMATRON_VALIDATION_ENABLED=OFF" - - name: Test - run: ctest -j2 --output-on-failure -E unique-stigids - working-directory: ./build