Blame .github/workflows/centos-stream8.yml

9140f8
jobs:
06113c
  test_c8s:
06113c
    name: test_c8s
8f3ff4
    runs-on: ubuntu-latest
e0eb10
    environment: centosduffy
9140f8
    steps:
Adam Saleh 8f8b2b
      - name: Install SSH key
Adam Saleh 8f8b2b
        uses: shimataro/ssh-key-action@v2
Adam Saleh 8f8b2b
        with:
20c6ca
          key: ${{ secrets.DUFFYY_SSH_PRIVATE_KEY }}
Adam Saleh 4b64c8
          name: id_centos_stream # optional
Adam Saleh 8f8b2b
          known_hosts: NO 
Adam Saleh 4b64c8
          if_key_exists: replace # replace / ignore / fail; optional (defaults to fail)
9140f8
      - uses: "actions/checkout@v2"
ebdbe9
      - run: sudo python3 -m pip install duffy fabric httpx
Adam Saleh 4b64c8
      - run: python3 t_functional_duffy_runner/src/__main__.py --arch=x86 --release=centos-9s --sshkey=~/.ssh/id_centos_stream
e0eb10
        env:
e0eb10
            DUFFY_AUTH_NAME: ${{ secrets.DUFFY_AUTH_NAME }}
e0eb10
            DUFFY_AUTH_KEY: ${{secrets.DUFFY_AUTH_KEY}}
06113c
  test_c9s:
06113c
    name: test_9s
06113c
    runs-on: ubuntu-latest
06113c
    environment: centosduffy
06113c
    steps:
06113c
      - name: Install SSH key
06113c
        uses: shimataro/ssh-key-action@v2
06113c
        with:
06113c
          key: ${{ secrets.DUFFYY_SSH_PRIVATE_KEY }}
06113c
          name: id_rsa # optional
06113c
          known_hosts: NO 
Adam Saleh 4b64c8
          if_key_exists: replace # replace / ignore / fail; optional (defaults to fail)
06113c
      - uses: "actions/checkout@v2"
06113c
      - run: sudo python3 -m pip install duffy fabric httpx
Adam Saleh 4b64c8
      - run: python3 t_functional_duffy_runner/src/__main__.py --arch=x86 --release=centos-9s --sshkey=~/.ssh/id_centos_stream
06113c
        env:
06113c
            DUFFY_AUTH_NAME: ${{ secrets.DUFFY_AUTH_NAME }}
06113c
            DUFFY_AUTH_KEY: ${{secrets.DUFFY_AUTH_KEY}}
Adam Saleh 940b93
Adam Saleh 940b93
name: Testing
Adam Saleh 940b93
on:
Adam Saleh 940b93
  push: {}