From 463930c71f25231ce271d1feff3ba27f837b84be Mon Sep 17 00:00:00 2001 From: Henry Mercer Date: Wed, 31 Jan 2024 14:27:03 +0000 Subject: [PATCH] Add PR check for none build mode --- .github/workflows/__build-mode-none.yml | 85 +++++++++++++++++++++++++ pr-checks/checks/build-mode-none.yml | 24 +++++++ 2 files changed, 109 insertions(+) create mode 100644 .github/workflows/__build-mode-none.yml create mode 100644 pr-checks/checks/build-mode-none.yml diff --git a/.github/workflows/__build-mode-none.yml b/.github/workflows/__build-mode-none.yml new file mode 100644 index 0000000000..822f7fc48c --- /dev/null +++ b/.github/workflows/__build-mode-none.yml @@ -0,0 +1,85 @@ +# Warning: This file is generated automatically, and should not be modified. +# Instead, please modify the template in the pr-checks directory and run: +# (cd pr-checks; pip install ruamel.yaml@0.17.31 && python3 sync.py) +# to regenerate this file. + +name: PR Check - Build mode none +env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GO111MODULE: auto + CODEQL_EXTRACTOR_JAVA_AGENT_DISABLE_KOTLIN: 'true' +on: + push: + branches: + - main + - releases/v* + pull_request: + types: + - opened + - synchronize + - reopened + - ready_for_review + workflow_dispatch: {} +jobs: + build-mode-none: + strategy: + matrix: + include: + - os: ubuntu-latest + version: latest + - os: ubuntu-latest + version: nightly-latest + name: Build mode none + permissions: + contents: read + security-events: write + timeout-minutes: 45 + runs-on: ${{ matrix.os }} + steps: + - name: Setup Python on MacOS + uses: actions/setup-python@v5 + if: >- + matrix.os == 'macos-latest' && ( + + matrix.version == 'stable-20221211' || + + matrix.version == 'stable-20230418' || + + matrix.version == 'stable-v2.13.5' || + + matrix.version == 'stable-v2.14.6') + with: + python-version: '3.11' + - name: Check out repository + uses: actions/checkout@v4 + - name: Prepare test + id: prepare-test + uses: ./.github/actions/prepare-test + with: + version: ${{ matrix.version }} + use-all-platform-bundle: 'false' + - name: Set environment variable for Swift enablement + if: runner.os != 'Windows' && matrix.version == '20221211' + shell: bash + run: echo "CODEQL_ENABLE_EXPERIMENTAL_FEATURES_SWIFT=true" >> $GITHUB_ENV + - uses: ./../action/init + id: init + with: + build-mode: none + db-location: ${{ runner.temp }}/customDbLocation + languages: java + tools: ${{ steps.prepare-test.outputs.tools-url }} + + - name: Validate database build mode + run: | + metadata_path="$RUNNER_TEMP/customDbLocation/java/codeql-database.yml" + build_mode=$(yq eval '.buildMode' "$metadata_path") + if [[ "$build_mode" != "none" ]]; then + echo "Expected build mode to be 'none' but was $build_mode" + exit 1 + fi + + - uses: ./../action/autobuild + - uses: ./../action/analyze + env: + CODEQL_ACTION_TEST_MODE: true diff --git a/pr-checks/checks/build-mode-none.yml b/pr-checks/checks/build-mode-none.yml new file mode 100644 index 0000000000..e8d62286f3 --- /dev/null +++ b/pr-checks/checks/build-mode-none.yml @@ -0,0 +1,24 @@ +name: "Build mode none" +description: "An end-to-end integration test of a Java repository built using 'build-mode: none'" +operatingSystems: ["ubuntu"] +versions: ["latest", "nightly-latest"] +steps: + - uses: ./../action/init + id: init + with: + build-mode: none + db-location: "${{ runner.temp }}/customDbLocation" + languages: java + tools: ${{ steps.prepare-test.outputs.tools-url }} + + - name: Validate database build mode + run: | + metadata_path="$RUNNER_TEMP/customDbLocation/java/codeql-database.yml" + build_mode=$(yq eval '.buildMode' "$metadata_path") + if [[ "$build_mode" != "none" ]]; then + echo "Expected build mode to be 'none' but was $build_mode" + exit 1 + fi + + - uses: ./../action/autobuild + - uses: ./../action/analyze