forked from chipsalliance/f4pga-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
94 changed files
with
1,409 additions
and
1,012 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: github-actions | ||
directory: / | ||
schedule: | ||
interval: weekly | ||
open-pull-requests-limit: 99 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- a/docs/getting.rst | ||
+++ b/docs/getting.rst | ||
@@ -146,7 +146,7 @@ Next, setup Conda and your system's environment, and download architecture defin | ||
F4PGA_HASH='007d1c1' | ||
|
||
for PKG in $F4PGA_PACKAGES; do | ||
- wget -qO- https://storage.googleapis.com/symbiflow-arch-defs/artifacts/prod/foss-fpga-tools/symbiflow-arch-defs/continuous/install/${F4PGA_TIMESTAMP}/symbiflow-arch-defs-${PKG}-${F4PGA_HASH}.tar.xz | tar -xJC $F4PGA_INSTALL_DIR/${FPGA_FAM} | ||
+ wget -qO- $(wget -qO- https://github.com/SymbiFlow/f4pga-arch-defs/releases/download/latest/symbiflow-${PKG}-latest) | tar -xJC $F4PGA_INSTALL_DIR/${FPGA_FAM} | ||
done | ||
|
||
If the above commands exited without errors, you have successfully installed and configured your working environment. | ||
-- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
#!/usr/bin/env python3 | ||
# | ||
# Copyright (C) 2021-2022 F4PGA Authors | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
from os import environ | ||
from sys import argv as sys_argv | ||
|
||
isFork = len(sys_argv)>1 and sys_argv[1] != 'chipsalliance/f4pga-examples' | ||
|
||
runs_on = ( | ||
'ubuntu-latest' | ||
if isFork else | ||
['self-hosted', 'Linux', 'X64', 'gcp-custom-runners'] | ||
) | ||
|
||
|
||
def get_jobs( | ||
distribution: str = 'debian', | ||
usesSurelog: bool = False | ||
): | ||
examples = [ | ||
"pulse_width_led", | ||
"hello", | ||
] | ||
|
||
# Skip tests that are currently unsupported | ||
if not usesSurelog: | ||
examples.extend([ | ||
"litex", | ||
"picosoc", | ||
"litex_linux", | ||
"button_controller", | ||
"timer", | ||
"hello-k", | ||
]) | ||
|
||
jobs = [] | ||
osvers = [] | ||
|
||
if distribution == "debian": | ||
osvers.extend([ | ||
("debian", "buster"), | ||
("debian", "bullseye"), | ||
("debian", "sid") | ||
]) | ||
elif distribution == "ubuntu": | ||
osvers.extend([ | ||
("ubuntu", "focal") | ||
]) | ||
elif distribution == "fedora": | ||
osvers.extend([ | ||
("fedora", "35"), | ||
("fedora", "36") | ||
]) | ||
|
||
if not isFork: | ||
examples.extend(["counter"]) | ||
|
||
# Skip tests that are currently unsupported | ||
if not usesSurelog: | ||
examples.extend(["litex_sata"]) | ||
|
||
if distribution == "ubuntu": | ||
osvers.extend([ | ||
("ubuntu", "xenial"), | ||
("ubuntu", "bionic"), | ||
]) | ||
elif distribution == "centos": | ||
osvers.extend([ | ||
("centos", "7") | ||
]) | ||
|
||
for osver in osvers: | ||
jobs.extend([{ | ||
'name': "Surelog" if usesSurelog else "Default", | ||
'runs-on': runs_on, | ||
'fpga-fam': "xc7", | ||
'os': osver[0], | ||
'os-version': osver[1], | ||
'example': example, | ||
'surelog': "-parse -DSYNTHESIS" if usesSurelog else "" | ||
} for example in examples]) | ||
|
||
jobs.extend([{ | ||
'name': "Surelog" if usesSurelog else "Default", | ||
'runs-on': runs_on, | ||
'fpga-fam': "eos-s3", | ||
'os': osver[0], | ||
'os-version': osver[1], | ||
'example': "counter", | ||
'surelog': "-parse -DSYNTHESIS" if usesSurelog else "" | ||
} for osver in osvers]) | ||
|
||
return jobs | ||
|
||
for distribution in ['debian', 'ubuntu', 'fedora', 'centos']: | ||
jobs = get_jobs(distribution, False) + get_jobs(distribution, True) | ||
print(f'::set-output name={distribution}::{jobs!s}') | ||
print(f"{distribution}: {jobs!s}") |
Oops, something went wrong.