chore: fix workflow

This commit is contained in:
Jesús Pérez 2023-07-20 04:24:58 +01:00
parent 73ff1c977e
commit 09a8a5622a

View File

@ -15,29 +15,34 @@ jobs:
KUBECONFIG: "/tmp/.kubeconfig"
RUSTUP_HOME: "/toolcache/rust/.rustup"
CARGO_HOME: "/toolcache/rust/.cargo"
KYD: ${{ secrets.KYD}}
#KYD: ${{ secrets.KYD}}
steps:
- name: Init job triggered by event
run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event "
- name: Workspace
run: |
echo "🔎 Branch name ${{ gitea.ref }} from repository ${{ gitea.repository }}."
KYD=$(echo "${{ secrets.KYD }}" | base64 -d)
echo "$KYD"
mkdir -p "$HOME/.ssh"
echo "${{ secrets.KYD }}" | base64 -d > "$HOME/.ssh/id_clrepo"
echo "${{ vars.K8_JOB }}" > $HOME/.ssh/config
#KYD=$(echo "${{ secrets.KYD }}" | base64 -d)
# ls ${{ gitea.workspace }}
- name: Check out repository code
uses: actions/checkout@v3
with:
ssh-key: "$KYD"
persist-credentials: true
#submodules: 'recursive'
# Defs in https://github.com/actions/checkout
#run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
# - name: Check out repository code
# uses: actions/checkout@v3
# with:
# ssh-key: "$KYD"
# persist-credentials: true
# github-server-url: git@clrepo.tls13.io:9623
# #submodules: 'recursive'
# # Defs https://gitea.com/actions/checkout
# #run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
- name: Submodules update
run: |
git clone --recurse-submodules ssh://git@clrepo.tls13.io:9623/${{ gitea.repository }}.git ${{ gitea.workspace }}
cd ${{ gitea.workspace }}
while true; do sleep 50 ; done
#git submodule update --init --recursive
while true; do sleep 20; done
git submodule update --init --recursive
# echo ${{ gitea.ssh_url }}
- name: Install Rust
run: |
printf "\n\t🐋 Installing dependencies 🐋\t\n"