mirror of
https://github.com/armbian/scripts.git
synced 2026-01-06 10:32:48 -08:00
34 lines
735 B
YAML
34 lines
735 B
YAML
name: Testtttt
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
|
|
start:
|
|
name: "Test"
|
|
runs-on: igor
|
|
steps:
|
|
|
|
- name: Install SSH key for storage
|
|
uses: shimataro/ssh-key-action@v2.5.1
|
|
with:
|
|
key: ${{ secrets.KEY_CI }}
|
|
known_hosts: github.com ssh-rsa AAAAB3Nz
|
|
if_key_exists: replace
|
|
|
|
- name: Run on DUT
|
|
id: duts
|
|
timeout-minutes: 15
|
|
uses: armbian/actions/dut-run@main
|
|
with:
|
|
DUT_IP: "10.0.30.210"
|
|
DUT_SLUG: "orangepi3"
|
|
BOARD_NAME: "Orange Pi3"
|
|
BRANCH: "current"
|
|
LINUXFAMILY: "x86"
|
|
|
|
- name: Read
|
|
if: always()
|
|
run: |
|
|
echo "Status ${{ steps.duts.outputs.status }}"
|