Prevent use of socat in firecracker-pilot #124
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
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
name: CI-Robot-Integration-Tests | |
jobs: | |
robot_test: | |
runs-on: ubuntu-latest | |
name: Run Robot Framework Tests | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Dependencies | |
run: | | |
sudo apt update | |
sudo apt -y install python3-docutils | |
sudo apt -y install python3 | |
pip install robotframework | |
sudo apt install podman | |
- name: Build Flake-Pilot | |
run: make build | |
- name: Install Flake-Pilot | |
run: sudo make install | |
- name: Run Robot Framework | |
run: python3 -m robot robot_tests | |
- name: Upload Log | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: robot-log | |
path: /home/runner/work/flake-pilot/flake-pilot/log.html | |
retention-days: 5 |