22 lines
395 B
YAML
22 lines
395 B
YAML
name: Manuelles Build mit ISE
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: xilinx-ise
|
|
steps:
|
|
- name: Install Node.js
|
|
run: |
|
|
curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
|
|
apt-get install -y nodejs
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Build in ./build
|
|
run: |
|
|
cd build
|
|
make
|