Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 11 additions & 7 deletions .github/workflows/centos-stream8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,24 @@ jobs:
runs-on: ubuntu-latest
environment: centosduffy
steps:
- uses: "actions/checkout@v2"
- uses: "actions/checkout@v4"
- uses: "actions/setup-python@v5"
- with:
python-version: '3.13'
cache: 'pip'
- run: printf '%s\n' "$DUFFYY_SSH_PRIVATE_KEY" > /tmp/id_centos_stream
env:
DUFFYY_SSH_PRIVATE_KEY: ${{ secrets.DUFFYY_SSH_PRIVATE_KEY }}
- run: chmod 600 /tmp/id_centos_stream
- run: sudo python3 -m pip install duffy fabric httpx
- run: python3 t_functional_duffy_runner/src/__main__.py --arch=x86 --release=centos-9s --sshkey=/tmp/id_centos_stream --path=$GITHUB_WORKSPACE
- run: pip install duffy fabric httpx

- run: python t_functional_duffy_runner/src/__main__.py --arch=x86 --release=centos-9s --sshkey=/tmp/id_centos_stream --path=$GITHUB_WORKSPACE
env:
DUFFY_AUTH_NAME: ${{ secrets.DUFFY_AUTH_NAME }}
DUFFY_AUTH_KEY: ${{secrets.DUFFY_AUTH_KEY}}

name: Testing
on:
pull_request_target:
branches: [ master ]
pull_request:
branches: [ '*' ]
push:
branches: [ master ]
branches: [ '*' ]
Loading