Skip to content

feat: Typhon wallet registration | NPG-000 #2472

feat: Typhon wallet registration | NPG-000

feat: Typhon wallet registration | NPG-000 #2472

Workflow file for this run

name: Nix CI
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
id-token: write
contents: read
concurrency:
group: ${{ github.sha }}
cancel-in-progress: true
env:
AWS_REGION: eu-central-1
AWS_ROLE_ARN: arn:aws:iam::332405224602:role/ci
ECR_REGISTRY: 332405224602.dkr.ecr.eu-central-1.amazonaws.com
S3_CACHE: s3://iog-catalyst-nix?region=eu-central-1
jobs:
discover:
outputs:
hits: ${{ steps.discovery.outputs.hits }}
nix_conf: ${{ steps.discovery.outputs.nix_conf }}
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}
steps:
- name: Standard Discovery
uses: divnix/std-action/[email protected]
id: discovery
build-packages:
needs: discover
strategy:
fail-fast: false
matrix:
target: ${{ fromJSON(needs.discover.outputs.hits).packages.build }}
name: ${{ matrix.target.cell }} - ${{ matrix.target.name }}
runs-on: ubuntu-latest
steps:
- name: Configure AWS Credentials
uses: aws-actions/[email protected]
with:
role-to-assume: ${{ env.AWS_ROLE_ARN }}
aws-region: ${{ env.AWS_REGION }}
- uses: divnix/std-action/[email protected]
with:
extra_nix_config: |
${{ needs.discover.outputs.nix_conf }}
json: ${{ toJSON(matrix.target) }}
nix_key: ${{ secrets.NIX_SIGNING_KEY }}
cache: ${{ env.S3_CACHE }}
build-devshells:
needs: discover
strategy:
fail-fast: false
matrix:
target: ${{ fromJSON(needs.discover.outputs.hits).devshells.build }}
name: ${{ matrix.target.cell }} - ${{ matrix.target.name }}
runs-on: ubuntu-latest
steps:
- name: Configure AWS Credentials
uses: aws-actions/[email protected]
with:
role-to-assume: ${{ env.AWS_ROLE_ARN }}
aws-region: ${{ env.AWS_REGION }}
- uses: divnix/std-action/[email protected]
with:
extra_nix_config: |
${{ needs.discover.outputs.nix_conf }}
json: ${{ toJSON(matrix.target) }}
nix_key: ${{ secrets.NIX_SIGNING_KEY }}
cache: ${{ env.S3_CACHE }}
publish-containers:
if: github.ref == 'refs/heads/main'
needs:
- discover
- build-packages
strategy:
fail-fast: false
matrix:
target: ${{ fromJSON(needs.discover.outputs.hits).containers.publish }}
name: ${{ matrix.target.cell }} - ${{ matrix.target.name }}
runs-on: ubuntu-latest
steps:
- name: Configure AWS Credentials
uses: aws-actions/[email protected]
with:
role-to-assume: ${{ env.AWS_ROLE_ARN }}
aws-region: ${{ env.AWS_REGION }}
- name: Configure Registry
run: |
aws ecr get-login-password --region eu-central-1 | docker login --username AWS --password-stdin "${{ env.ECR_REGISTRY }}"
- uses: divnix/std-action/[email protected]
with:
extra_nix_config: |
${{ needs.discover.outputs.nix_conf }}
json: ${{ toJSON(matrix.target) }}
nix_key: ${{ secrets.NIX_SIGNING_KEY }}
cache: ${{ env.S3_CACHE }}