update makefile to reset build agent
This commit is contained in:
parent
17c91ffc34
commit
30f6e43916
|
|
@ -5,7 +5,7 @@ jobs:
|
|||
runs-on: self-hosted
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Install Manta from Source
|
||||
- name: Install Manta from source
|
||||
run: |
|
||||
pip install setuptools --upgrade
|
||||
|
||||
|
|
@ -28,4 +28,7 @@ jobs:
|
|||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: examples
|
||||
path: examples/
|
||||
path: examples/
|
||||
|
||||
- name: Schedule reboot to reset build agent
|
||||
run: shutdown -r +2
|
||||
4
Makefile
4
Makefile
|
|
@ -119,9 +119,9 @@ $(NEXYS_A7_EXAMPLES):
|
|||
$(VIVADO_PATH) -mode batch -source ../build.tcl
|
||||
|
||||
# Build Icestick Examples
|
||||
ICESTICK_EXAMPLES = io_core
|
||||
ICESTICK_EXAMPLES := io_core
|
||||
|
||||
.PHONY icestick $(ICESTICK_EXAMPLES)
|
||||
.PHONY: icestick $(ICESTICK_EXAMPLES)
|
||||
icestick: $(ICESTICK_EXAMPLES)
|
||||
|
||||
$(ICESTICK_EXAMPLES):
|
||||
|
|
|
|||
Loading…
Reference in New Issue