Skip to content

Commit f190f50

Browse files
Create qemu.yml
1 parent 46291ce commit f190f50

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/qemu.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Qemu
2+
concurrency: qemu
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- main
8+
jobs:
9+
Deploy:
10+
environment: testing
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Check out repository code
14+
uses: actions/checkout@v3
15+
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
16+
- name: List files in the repository
17+
run: |
18+
ls -la ${{ github.workspace }}
19+
- name: Install quemu
20+
run: |
21+
set -x
22+
apt-get update
23+
apt-get install -y qemu-system
24+
25+
- name: Run quemu
26+
run: |
27+
set -x
28+
qemu-system-x86_64 -cpu ?
29+

0 commit comments

Comments
 (0)