ci: use kash's decrypt_stdout for DockerHub login after submodule bum… #64
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 | |
| build_service: | |
| description: "Build service" | |
| default: false | |
| required: false | |
| type: boolean | |
| build_ingestion_job: | |
| description: "Build ingestion job" | |
| 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 | |
| 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 }} | |
| build_service: | |
| name: Build service | |
| if: ${{ !contains(github.event.head_commit.message, 'skip build') }} | |
| 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 service | |
| env: | |
| SOPS_AGE_KEY: ${{ secrets.SOPS_AGE_KEY }} | |
| run: bash ./scripts/build_service.sh -p -r ${{ github.job }} | |
| build_ingestion_job: | |
| name: Build ingestion job | |
| 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 service | |
| env: | |
| SOPS_AGE_KEY: ${{ secrets.SOPS_AGE_KEY }} | |
| run: bash ./scripts/build_ingestion_job.sh -p -r ${{ github.job }} | |
| build_docs: | |
| name: Build docs | |
| 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 }} |