From b34db682d4c200e71b7ad71c25f182943e362703 Mon Sep 17 00:00:00 2001 From: 0xMax42 Date: Tue, 22 Apr 2025 17:44:08 +0200 Subject: [PATCH] =?UTF-8?q?.github/workflows/build.yml=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/build.yml 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 +