diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..cc2985f --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,19 @@ +name: Manuelles Build mit ISE + +on: + workflow_dispatch: + +jobs: + build: + runs-on: xilinx-ise + steps: + - name: Checkout + uses: actions/checkout@v2 + with: + submodules: true + + - name: Build + run: | + cd "$GITHUB_WORKSPACE/build" + make +