From 5dffe1c45691cddfeba3f10d562925c1875ba7ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20J=C3=B6rdens?= Date: Wed, 11 Sep 2019 17:28:53 +0200 Subject: [PATCH] try github actions --- .github/workflows/ci.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..500e84d --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,25 @@ +name: Continuous Integration +on: + push: + branches: + - staging + - trying + - master + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Install toolchain + run: rustup toolchain install nightly + - name: Use toolchain + run: rustup override add nightly + - name: Install target + run: rustup target add thumbv7em-none-eabihf + - name: Build release + run: cargo build --verbose --release + - name: Build semihosting + run: cargo build --verbose --features semihosting + - name: Build bkpt + run: cargo build --verbose --features bkpt,semihosting