fix: build jobs : use_node in build_krawler_job wrapper #2 #37
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: | |
| workflow_dispatch: | |
| inputs: | |
| run_tests: | |
| description: "Run tests" | |
| default: false | |
| required: false | |
| type: boolean | |
| additional_tests: | |
| description: "Run additional tests" | |
| default: false | |
| required: false | |
| type: boolean | |
| build_app: | |
| description: "Build app" | |
| default: false | |
| required: false | |
| type: boolean | |
| build_jobs: | |
| description: "Build jobs" | |
| default: false | |
| required: false | |
| type: boolean | |
| build_docs: | |
| description: "Build docs" | |
| default: false | |
| required: false | |
| type: boolean | |
| jobs: | |
| run_tests: | |
| name: Run tests | |
| if: ${{ | |
| github.event_name == 'workflow_dispatch' && inputs.run_tests || | |
| github.event_name == 'push' && !contains(github.event.head_commit.message, 'skip tests') | |
| }} | |
| runs-on: ubuntu-22.04 | |
| services: | |
| redis: | |
| image: redis:7-alpine | |
| ports: | |
| - 6379:6379 | |
| options: >- | |
| --health-cmd "redis-cli ping" | |
| --health-interval 10s | |
| --health-timeout 5s | |
| --health-retries 5 | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Init runner | |
| run: bash ./scripts/init_runner.sh ${{ github.job }} | |
| - name: Setup workspace | |
| env: | |
| KALISIO_GITHUB_URL: ${{ secrets.KALISIO_GITHUB_URL }} | |
| run: bash ./scripts/setup_workspace.sh | |
| - name: Run tests | |
| env: | |
| SOPS_AGE_KEY: ${{ secrets.SOPS_AGE_KEY }} | |
| run: bash ./scripts/run_tests.sh -s -r ${{ github.job }} | |
| additional_tests: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node: [ 20, 22 ] | |
| mongo: [ 7, 8 ] | |
| name: Additional tests | |
| if: ${{ | |
| github.event_name == 'workflow_dispatch' && inputs.additional_tests || | |
| github.event_name == 'push' && contains(github.event.head_commit.message, 'additional tests') | |
| }} | |
| runs-on: ubuntu-22.04 | |
| services: | |
| redis: | |
| image: redis:7-alpine | |
| ports: | |
| - 6379:6379 | |
| options: >- | |
| --health-cmd "redis-cli ping" | |
| --health-interval 10s | |
| --health-timeout 5s | |
| --health-retries 5 | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Init runner | |
| run: bash ./scripts/init_runner.sh ${{ github.job }} | |
| - name: Setup workspace | |
| env: | |
| KALISIO_GITHUB_URL: ${{ secrets.KALISIO_GITHUB_URL }} | |
| run: bash ./scripts/setup_workspace.sh -n ${{ matrix.node }} | |
| - name: Run tests | |
| env: | |
| SOPS_AGE_KEY: ${{ secrets.SOPS_AGE_KEY }} | |
| run: bash ./scripts/run_tests.sh -n ${{ matrix.node }} -m ${{ matrix.mongo }} | |
| build_app: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node: [ 20 ] | |
| debian: [ 'bookworm' ] | |
| name: Build app | |
| if: ${{ | |
| github.event_name == 'workflow_dispatch' && inputs.build_app || | |
| github.event_name == 'push' && !contains(github.event.head_commit.message, 'skip app') | |
| }} | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Init runner | |
| run: bash ./scripts/init_runner.sh ${{ github.job }} | |
| - name: Setup workspace | |
| env: | |
| KALISIO_GITHUB_URL: ${{ secrets.KALISIO_GITHUB_URL }} | |
| run: bash ./scripts/setup_workspace.sh | |
| - name: Build app | |
| env: | |
| SOPS_AGE_KEY: ${{ secrets.SOPS_AGE_KEY }} | |
| run: bash ./scripts/build_app.sh -n ${{ matrix.node }} -d ${{ matrix.debian }} -r ${{ github.job }} | |
| build_jobs: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - package: krawler-openradiation | |
| variant: "" | |
| name: Build job (${{ matrix.package }}${{ matrix.variant && format(' / {0}', matrix.variant) || '' }}) | |
| if: ${{ | |
| github.event_name == 'workflow_dispatch' && inputs.build_jobs || | |
| github.event_name == 'push' && contains(github.event.head_commit.message, 'build jobs') | |
| }} | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Init runner | |
| run: bash ./scripts/init_runner.sh ${{ github.job }} | |
| - name: Setup workspace | |
| env: | |
| KALISIO_GITHUB_URL: ${{ secrets.KALISIO_GITHUB_URL }} | |
| run: bash ./scripts/setup_workspace.sh | |
| - name: Build job | |
| env: | |
| SOPS_AGE_KEY: ${{ secrets.SOPS_AGE_KEY }} | |
| run: bash ./scripts/build_krawler_job.sh -j ${{ matrix.package }} ${{ matrix.variant && format('-v {0}', matrix.variant) || '' }} -r "${{ github.job }} ${{ matrix.package }}" | |
| build_docs: | |
| name: Build doc | |
| if: ${{ | |
| github.event_name == 'workflow_dispatch' && inputs.build_docs || | |
| github.event_name == 'push' && contains(github.event.head_commit.message, 'doc') | |
| }} | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Init runner | |
| run: bash ./scripts/init_runner.sh ${{ github.job }} | |
| - name: Setup workspace | |
| env: | |
| KALISIO_GITHUB_URL: ${{ secrets.KALISIO_GITHUB_URL }} | |
| run: bash ./scripts/setup_workspace.sh -k nokli | |
| - name: Build docs | |
| env: | |
| SOPS_AGE_KEY: ${{ secrets.SOPS_AGE_KEY }} | |
| run: bash ./scripts/build_docs.sh -p -r ${{ github.job }} |