Skip to content

fix: increase pod memory and cpu limits #17

fix: increase pod memory and cpu limits

fix: increase pod memory and cpu limits #17

Workflow file for this run

name: PR
on:
pull_request:
concurrency:
# Cancel in progress for PR open and close
group: ${{ github.event.number }}
cancel-in-progress: true
jobs:
# https://github.com/bcgov-nr/action-builder-ghcr
builds:
name: Builds
runs-on: ubuntu-24.04
timeout-minutes: 10
steps:
- uses: bcgov-nr/action-builder-ghcr@v2.3.0
with:
keep_versions: 50
package: migrations
tag: ${{ github.event.number }}
tag_fallback: latest
triggers: ('migrations/')
- uses: bcgov-nr/action-builder-ghcr@v2.3.0
with:
keep_versions: 50
package: backend
build_context: apps
build_file: apps/Codes/Codes.Server/Dockerfile
tag: ${{ github.event.number }}
tag_fallback: latest
triggers: ('apps/')
# https://github.com/bcgov/quickstart-openshift-helpers
deploys:
name: Deploys
needs: [builds]
uses: ./.github/workflows/.deployer.yml
secrets:
oc_namespace: ${{ secrets.OC_NAMESPACE }}
oc_token: ${{ secrets.OC_TOKEN }}
with:
triggers: ('apps/' 'migrations/' 'charts/')
db_user: app-${{github.event.number}}
params: --set global.secrets.persist=false
results:
name: PR Results
needs: [builds, deploys]
if: always()
runs-on: ubuntu-24.04
steps:
- if: contains(needs.*.result, 'failure')
run: echo "At least one job has failed." && exit 1
- run: echo "Success!"