remove cronos and bttc (bittorent) chain #11814
Workflow file for this run
This file contains 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: 'Auto Deploy PR' | |
concurrency: | |
group: pr-workflow-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
env: | |
SERVICE: kyberswap-interface | |
jobs: | |
prepare: | |
runs-on: ubuntu-22.04 | |
outputs: | |
current_branch: ${{ steps.current_branch.outputs.value }} | |
head_sha: ${{ github.event.pull_request.head.sha }} | |
image_name: 'asia.gcr.io/kyber-operation/core/${{ env.SERVICE }}' | |
image_tag: ${{ steps.get_tag.outputs.image_tag }} | |
repository: ${{ github.repository }} | |
pr_number: ${{github.event.number}} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Extract branch | |
shell: bash | |
id: current_branch | |
run: | | |
if [[ ! "${{ github.ref }}" = "refs/tags/"* ]]; then | |
if [[ "${{ github.event_name }}" = "pull_request" ]]; then | |
HEAD_REF=$(printf "%q" "${{ github.head_ref }}") | |
HEAD_REF=${HEAD_REF/refs\/heads\//} | |
BRANCH=$HEAD_REF | |
else | |
REF=$(printf "%q" "${{ github.ref }}") | |
REF_BRANCH=${REF/refs\/pull\//} | |
REF_BRANCH=${REF_BRANCH/refs\/heads\//} | |
BRANCH=$REF_BRANCH | |
fi | |
else | |
REF=$(printf "%q" "${{ github.ref }}") | |
REF_BRANCH=${REF/refs\/tags\//} | |
BRANCH=$REF_BRANCH | |
fi | |
echo "name=$BRANCH" >> $GITHUB_OUTPUT | |
- name: Extract GitHub HEAD SHA | |
id: head_sha | |
run: | | |
echo "value=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT | |
- name: Get Docker image tag | |
id: get_tag | |
env: | |
HEAD_SHA: ${{ github.event.pull_request.head.sha }} | |
run: | | |
short_sha="$(echo $HEAD_SHA | head -c7)" | |
echo "image_tag=adpr-$short_sha" >> $GITHUB_OUTPUT | |
build: | |
runs-on: ubuntu-22.04 | |
needs: | |
- prepare | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GH_PAT }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 21.0.0 | |
registry-url: 'https://npm.pkg.github.com' | |
scope: '@kybernetwork' | |
token: ${{ secrets.GH_PAT }} | |
- run: | | |
echo "@kybernetwork:registry=https://npm.pkg.github.com" >> .npmrc | |
echo "//npm.pkg.github.com/:_authToken=${{ secrets.GH_PAT }}" >> .npmrc | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@master | |
- name: Gcloud Auth | |
uses: google-github-actions/auth@v1 | |
with: | |
credentials_json: '${{ secrets.GCR_CREDENTIALS }}' | |
- name: Setup Gcloud SDK | |
uses: google-github-actions/setup-gcloud@v1 | |
- name: Configure docker | |
run: gcloud auth configure-docker | |
- name: Cache Docker layers | |
uses: actions/cache@v4 | |
with: | |
path: /tmp/.buildx-cache | |
key: ${{ runner.os }}-${{ env.SERVICE }}-buildx | |
- name: Restore node_modules | |
uses: actions/cache@v4 | |
with: | |
path: '**/node_modules' | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} | |
- name: Install dependences | |
uses: bahmutov/npm-install@v1 | |
- name: Yarn Build | |
env: | |
CI: false | |
VITE_TAG: ${{ needs.prepare.outputs.image_tag }} | |
CURRENT_BRANCH: ${{ needs.prepare.outputs.current_branch }} | |
NODE_OPTIONS: '--max_old_space_size=4096' | |
run: yarn build-prod | |
- name: Docker build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
push: true | |
labels: | | |
kyber.network.schema-version=1.0 | |
kyber.network.vcs-ref=${{ github.sha }} | |
kyber.network.version=${{ needs.prepare.outputs.image_tag }} | |
kyber.network.name=${{ env.SERVICE }} | |
tags: | | |
${{ needs.prepare.outputs.image_name }}:${{ needs.prepare.outputs.image_tag }} | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache-new | |
- name: Move Docker cache | |
run: | | |
rm -rf /tmp/.buildx-cache | |
mv /tmp/.buildx-cache-new /tmp/.buildx-cache | |
linter: | |
runs-on: ubuntu-22.04 | |
needs: | |
- prepare | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GH_PAT }} ### authen npm | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 21.0.0 | |
registry-url: 'https://npm.pkg.github.com' | |
scope: '@kybernetwork' | |
- run: | | |
echo "@kybernetwork:registry=https://npm.pkg.github.com" >> .npmrc | |
echo "//npm.pkg.github.com/:_authToken=${{ secrets.GH_PAT }}" >> .npmrc | |
- name: Install dependences | |
uses: bahmutov/npm-install@v1 | |
- name: Run Lint | |
run: yarn lint --quiet |