diff options
| author | Matt Borgerson <contact@mborgerson.com> | 2019-12-17 20:06:50 -0700 |
|---|---|---|
| committer | Matt Borgerson <contact@mborgerson.com> | 2019-12-17 20:21:16 -0700 |
| commit | 39782f1bd865bb477191ce05fa7203b05ed76e22 (patch) | |
| tree | b89a796e162e7a747e4b33208ec6424a917e4d9b | |
| parent | e417c6750982fbc2e0bee29f5808ef9e78564a6e (diff) | |
Add basic build and test CI
| -rw-r--r-- | .github/workflows/build_ubuntu.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/build_ubuntu.yml b/.github/workflows/build_ubuntu.yml new file mode 100644 index 0000000..1342203 --- /dev/null +++ b/.github/workflows/build_ubuntu.yml @@ -0,0 +1,22 @@ +name: Build + +on: [push, pull_request] + +jobs: + Build: + runs-on: ubuntu-latest + steps: + - name: Clone Tree + uses: actions/checkout@v1 + with: + fetch-depth: 1 + - name: Install Dependencies + run: | + sudo apt-get update + sudo apt-get install -y build-essential nasm qemu gdb-multiarch + - name: Compile + run: | + make + - name: Test + run: | + ./smoketest.sh |
