Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New workflow #503

Closed
wants to merge 14 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions .github/workflows/autogenerate-types-chains.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: "Autogenerate types after chain upgrades"

on:
workflow_dispatch:
inputs:
chain:
description: "Chain to run the action for"
required: true
type: choice
options:
- composable
- picasso_kusama

jobs:
generate-types-and-open-pr:
runs-on: ubuntu-latest

if: github.event_name == 'workflow_dispatch'

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Set Git Identity
run: |
git config --global user.email "${GITHUB_ACTOR_EMAIL}"
git config --global user.name "${GITHUB_ACTOR}"

- name: Set Environment Variables
run: |
echo "CHAIN=${{ github.event.inputs.chain }}" >> $GITHUB_ENV
if [[ "${{ github.event.inputs.chain }}" == "composable" ]]; then
echo "RELAY_URL=wss://rpc-pruned7200-0.polkadot-mainnet.sre-scratchpad-349209.composablenodes.tech" >> $GITHUB_ENV
echo "PARA_URL=wss://rpc-pruned3600-0.composable-mainnet.sre-scratchpad-349209.composablenodes.tech" >> $GITHUB_ENV
fi
echo "RELAY_URL=wss://rpc-pruned7200-0.kusama-mainnet.sre-scratchpad-349209.composablenodes.tech:443" >> $GITHUB_ENV
echo "PARA_URL=wss://rpc-pruned3600-0.picasso-mainnet.sre-scratchpad-349209.composablenodes.tech:443" >> $GITHUB_ENV

- name: Generate Types
run: |
cargo run -p codegen --bin codegen -- --path ./utils/subxt/generated/src/$CHAIN --relay-url $RELAY_URL --para-url $PARA_URL

- name: Create pull request
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "Auto-generate types for $CHAIN"
branch: ${{ github.actor }}-branch
base: master
title: "Autogen: types update"
2 changes: 1 addition & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
cancel-in-progress: true

container:
image: paritytech/ci-unified:bullseye-1.71.0-v20230727
image: paritytech/ci-unified:bullseye-1.74.0-v20240109

runs-on:
- self-hosted
Expand Down
94 changes: 94 additions & 0 deletions .github/workflows/docker-build-publish-hyperspace.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
name: "Build and publish Hyperspace Docker image"

on:
push:
branches:
- '*'
tags:
- 'v*'

env:
REGISTRY: ghcr.io
IMAGE_NAME: composablefi/composable-ibc/hyperspace

jobs:

build-and-publish:

name: Build & push docker image

runs-on: ubuntu-latest

permissions:
contents: read
packages: write

concurrency:
group: hyperspace-docker-image-${{ github.ref }}
cancel-in-progress: true

steps:
- name: Clean up
continue-on-error: true
run: |
sudo chown -R $USER:$USER $GITHUB_WORKSPACE
docker system prune --force --all --volumes

- name: Install dependencies
run: |
sudo apt-get install -y make build-essential

- uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Extract metadata (tags, labels) for Docker (tag)
id: meta-tag
if: github.ref_type == 'tag'
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}

- name: Extract metadata (tags, labels) for Docker (branch)
id: meta-branch
if: github.ref_type == 'branch'
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=ref,event=branch
type=sha,prefix={{branch}}-

- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push Docker image (tag)
if: github.ref_type == 'tag'
uses: docker/build-push-action@v5
with:
file: scripts/hyperspace.Dockerfile
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta-tag.outputs.tags }}
labels: ${{ steps.meta-tag.outputs.labels }}

- name: Build and push Docker image (branch)
if: github.ref_type == 'branch'
uses: docker/build-push-action@v5
with:
file: scripts/hyperspace.Dockerfile
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta-branch.outputs.tags }}
labels: ${{ steps.meta-branch.outputs.labels }}
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
group: check-${{ github.ref }}
cancel-in-progress: true
container:
image: paritytech/ci-unified:bullseye-1.71.0-v20230727
image: paritytech/ci-unified:bullseye-1.74.0-v20240109
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down
Loading
Loading