check_libxrpl #12
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: Check new libXRPL | |
| on: | |
| repository_dispatch: | |
| types: [check_libxrpl] | |
| concurrency: | |
| # Only cancel in-progress jobs or runs for the current workflow - matches against branch & tags | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| CONAN_PROFILE: gcc | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| build: | |
| name: Build Clio / `libXRPL ${{ github.event.client_payload.version }}` | |
| runs-on: heavy | |
| container: | |
| image: ghcr.io/xrplf/clio-ci:067449c3f8ae6755ea84752ea2962b589fe56c8f | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| fetch-depth: 0 | |
| - name: Prepare runner | |
| uses: XRPLF/actions/prepare-runner@65da1c59e81965eeb257caa3587b9d45066fb925 | |
| with: | |
| enable_ccache: false | |
| - name: Update libXRPL version requirement | |
| run: | | |
| sed -i.bak -E "s|'xrpl/[a-zA-Z0-9\\.\\-]+'|'xrpl/${{ github.event.client_payload.conan_ref }}'|g" conanfile.py | |
| rm -f conanfile.py.bak | |
| - name: Update conan lockfile | |
| run: | | |
| conan lock create . --profile:all ${{ env.CONAN_PROFILE }} | |
| - name: Run conan | |
| uses: ./.github/actions/conan | |
| with: | |
| conan_profile: ${{ env.CONAN_PROFILE }} | |
| - name: Run CMake | |
| uses: ./.github/actions/cmake | |
| with: | |
| conan_profile: ${{ env.CONAN_PROFILE }} | |
| - name: Build Clio | |
| uses: ./.github/actions/build-clio | |
| - name: Strip tests | |
| run: strip build/clio_tests | |
| - name: Upload clio_tests | |
| uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 | |
| with: | |
| name: clio_tests_check_libxrpl | |
| path: build/clio_tests | |
| run_tests: | |
| name: Run tests | |
| needs: build | |
| runs-on: heavy | |
| container: | |
| image: ghcr.io/xrplf/clio-ci:067449c3f8ae6755ea84752ea2962b589fe56c8f | |
| steps: | |
| - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0 | |
| with: | |
| name: clio_tests_check_libxrpl | |
| - name: Run clio_tests | |
| run: | | |
| chmod +x ./clio_tests | |
| ./clio_tests | |
| create_issue_on_failure: | |
| name: Create an issue on failure | |
| needs: [build, run_tests] | |
| if: ${{ always() && contains(needs.*.result, 'failure') }} | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| issues: write | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Create an issue | |
| uses: ./.github/actions/create-issue | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| with: | |
| labels: "compatibility,bug" | |
| title: "Proposed libXRPL check failed" | |
| body: > | |
| Clio build or tests failed against `libXRPL ${{ github.event.client_payload.conan_ref }}`. | |
| PR: ${{ github.event.client_payload.pr_url }} | |
| Workflow run: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/ |