cherry-pick of cypher25_apoc_proc_func_migration (#4211) #5896
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [ "5.24" ] | |
| pull_request: | |
| branches: [ "5.24" ] | |
| env: | |
| CODEARTIFACT_DOWNLOAD_URL: ${{ secrets.CODEARTIFACT_DOWNLOAD_URL }} | |
| CODEARTIFACT_USERNAME: ${{ secrets.CODEARTIFACT_USERNAME }} | |
| jobs: | |
| code-ql: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| language: [ 'java', 'javascript' ] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: ./.github/actions/setup-jdk | |
| - uses: ./.github/actions/setup-gradle-cache | |
| - name: Compile Java | |
| run: | | |
| chmod +x gradlew | |
| ./gradlew --no-daemon --init-script init.gradle clean | |
| # Initializes the CodeQL tools for scanning. | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v2 | |
| with: | |
| languages: ${{ matrix.language }} | |
| # Autobuild attempts to build any compiled languages | |
| - name: Autobuild | |
| uses: github/codeql-action/autobuild@v2 | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v2 | |
| with: | |
| category: "/language:${{matrix.language}}" | |
| tests: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| project: [ 'extended', 'extended-it' ] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v2 | |
| with: | |
| java-version: '17.0.8' | |
| distribution: 'temurin' | |
| - uses: actions/cache@v2 | |
| with: | |
| path: | | |
| ~/.gradle/caches | |
| ~/.gradle/wrapper | |
| key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | |
| - name: Init gradle | |
| run: | | |
| chmod +x gradlew | |
| ./gradlew --init-script init.gradle | |
| - name: Run ${{ matrix.project }} tests | |
| uses: ./.github/actions/test-gradle-project | |
| with: | |
| project-name: ${{ matrix.project }} |