Skip to content

Commit

Permalink
workflow: run ci scripts
Browse files Browse the repository at this point in the history
Make sure the scripts work as expected.

Signed-off-by: Norbert Manthey <[email protected]>
  • Loading branch information
nmanthey authored and wipawel committed Nov 25, 2020
1 parent a7028eb commit c65e3f5
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/docker-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Docker Run Test

on:
push:
branches: [ mainline ]
pull_request:
branches: [ mainline ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install Required Packages
env:
DEBIAN_FRONTEND: noninteractive
run: |
sudo apt-get update
sudo apt-get install -y qemu qemu-user
- uses: actions/checkout@v2
- name: Build the Docker image
run: ./tools/ci/build-docker.sh
- name: Run the Docker image
run: ./tools/ci/launch-test.sh

0 comments on commit c65e3f5

Please sign in to comment.