Merge pull request #1150 from microsoft/enhancement-contrib-update #2895
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
# Copyright (c) Microsoft Corporation. | |
# Licensed under the MIT license. | |
name: Main Catcollar | |
concurrency: | |
group: catcollar | |
cancel-in-progress: false | |
on: | |
push: | |
branches: | |
- bugfix-* | |
- enhancement-* | |
- feature-* | |
- workaround-* | |
- dev | |
- unstable | |
- main | |
workflow_dispatch: | |
env: | |
LIBOS: catcollar | |
SERVER: ${{ secrets.CATCOLLAR_HOSTNAME_A }} | |
CLIENT: ${{ secrets.CATCOLLAR_HOSTNAME_B }} | |
SERVER_ADDR: 10.3.1.40 | |
CLIENT_ADDR: 10.3.1.41 | |
jobs: | |
debug-pipeline: | |
name: Debug Pipeline | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup SSH | |
shell: bash | |
run: | | |
mkdir -p $HOME/.ssh/ | |
echo "${{ secrets.SSHKEY }}" > "$HOME/.ssh/id_rsa" | |
chmod 400 $HOME/.ssh/id_rsa | |
echo "Host *" > $HOME/.ssh/config | |
echo -e "\tStrictHostKeyChecking no" >> $HOME/.ssh/config | |
echo -e "\tIdentityFile $HOME/.ssh/id_rsa" >> $HOME/.ssh/config | |
echo -e "\tIdentitiesOnly yes" >> $HOME/.ssh/config | |
echo -e "\tPasswordAuthentication no" >> $HOME/.ssh/config | |
echo -e "\tUser ${{ secrets.USERNAME }}" >> $HOME/.ssh/config | |
echo -e "\tPort ${{ secrets.PORTNUM }}" >> $HOME/.ssh/config | |
- name: Run | |
run: | | |
pip install --pre azure-data-tables | |
python3 tools/demikernel_ci.py \ | |
--server $SERVER \ | |
--client $CLIENT \ | |
--repository demikernel \ | |
--branch origin/${{ github.ref_name }} \ | |
--libos $LIBOS \ | |
--debug \ | |
--test-unit --test-system all --delay 2 \ | |
--server-addr $SERVER_ADDR \ | |
--client-addr $CLIENT_ADDR | |
- name: Archive Logs | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: debug-pipeline-logs | |
path: | | |
**/*.stdout.txt | |
**/*.stderr.txt | |
release-pipeline: | |
name: Release Pipeline | |
needs: debug-pipeline | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup SSH | |
shell: bash | |
run: | | |
mkdir -p $HOME/.ssh/ | |
echo "${{ secrets.SSHKEY }}" > "$HOME/.ssh/id_rsa" | |
chmod 400 $HOME/.ssh/id_rsa | |
echo "Host *" > $HOME/.ssh/config | |
echo -e "\tStrictHostKeyChecking no" >> $HOME/.ssh/config | |
echo -e "\tIdentityFile $HOME/.ssh/id_rsa" >> $HOME/.ssh/config | |
echo -e "\tIdentitiesOnly yes" >> $HOME/.ssh/config | |
echo -e "\tPasswordAuthentication no" >> $HOME/.ssh/config | |
echo -e "\tUser ${{ secrets.USERNAME }}" >> $HOME/.ssh/config | |
echo -e "\tPort ${{ secrets.PORTNUM }}" >> $HOME/.ssh/config | |
- name: Run | |
run: | | |
pip install --pre azure-data-tables | |
python3 tools/demikernel_ci.py \ | |
--server $SERVER \ | |
--client $CLIENT \ | |
--repository demikernel \ | |
--branch origin/${{ github.ref_name }} \ | |
--libos $LIBOS \ | |
--test-unit --test-system all --delay 2 \ | |
--server-addr $SERVER_ADDR \ | |
--client-addr $CLIENT_ADDR \ | |
--connection-string "${{ secrets.AZURE_STORAGE_CONNECTION_STRING }}" \ | |
--table-name ${{ secrets.AZURE_STORAGE_TABLE_NAME }} | |
- name: Archive Logs | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: release-pipeline-logs | |
path: | | |
**/*.stdout.txt | |
**/*.stderr.txt |