Skip to content

Commit 344ca3d

Browse files
committed
toolchain: add symbiflow-toolchain package
Signed-off-by: Alessandro Comodi <[email protected]>
1 parent 57a9abc commit 344ca3d

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash
2+
3+
mkdir -p $PREFIX
4+
5+
curl -s https://storage.googleapis.com/symbiflow-arch-defs-gha/symbiflow-toolchain-latest | xargs wget -qO- | tar -xJC $PREFIX
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{% set version = '%s_%04i_%s'|format(GIT_DESCRIBE_TAG|replace('v','') or '0.X', GIT_DESCRIBE_NUMBER|int, GIT_DESCRIBE_HASH or 'gUNKNOWN') %}
2+
3+
package:
4+
name: symbiflow-toolchain
5+
version: {{ version }}
6+
7+
source:
8+
git_url: https://github.com/SymbiFlow/symbiflow-arch-defs.git
9+
git_rev: master
10+
11+
build:
12+
# number: 201803050325
13+
number: {{ environ.get('DATE_NUM') }}
14+
# string: 20180305_0325
15+
string: {{ environ.get('DATE_STR') }}
16+
script_env:
17+
- CI
18+
19+
requirements:
20+
build:
21+
- wget
22+
- curl
23+
host:
24+
run:
25+
26+
about:
27+
home: https://github.com/SymbiFlow/symbiflow-arch-defs
28+
license: ISC
29+
license_file: LICENSE
30+
summary: 'FOSS architecture definitions of FPGA hardware useful for doing PnR device generation.'

0 commit comments

Comments
 (0)