Skip to content

[CI] Add clone pipeline in action #1

[CI] Add clone pipeline in action

[CI] Add clone pipeline in action #1

Workflow file for this run

name: cccccclone
on:
pull_request:
branches: [ "develop" ]
jobs:
clone:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: 'recursive'
# - name: Modify branch name
# run: |
# git branch -m test
# - name: tar Paddle
# runs:|
# tar --exclude=Paddle.tar.gz -zcf Paddle.tar.gz .
# - name: Download BOS client
# run: |
# set +x
# wget -q --no-proxy -O bce_whl.tar.gz https://paddle-docker-tar.bj.bcebos.com/home/bce_whl.tar.gz --no-check-certificate
# set -x
# tar xf bce_whl.tar.gz
# echo "bos_client=bce-python-sdk-0.8.27/BosClient.py" >> $GITHUB_ENV
# - name: Push to BOS
# env:
# PR_ID: ${{ github.event.pull_request.number }}
# COMMIT_ID: ${{ github.event.pull_request.head.sha }}
# run: |
# python3 ${{ env.bos_client }} Paddle.tar.gz xly-devops/PR/Paddle/${PR_ID}/${COMMIT_ID}
# - name: Upload Paddle artifact
# uses: actions/upload-artifact@v3
# with:
# name: Paddle
# path: Paddle.tar.gz