Skip to content

Commit

Permalink
s/SymbiFlow/F4PGA/
Browse files Browse the repository at this point in the history
  • Loading branch information
umarcor committed Apr 25, 2022
1 parent ebdb922 commit aef5255
Showing 1 changed file with 28 additions and 28 deletions.
@@ -1,7 +1,7 @@
# Authors:
# Unai Martinez-Corral
#
# Copyright 2021 Unai Martinez-Corral <unai.martinezcorral@ehu.eus>
# Copyright 2021-2022 Unai Martinez-Corral <unai.martinezcorral@ehu.eus>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -17,7 +17,7 @@
#
# SPDX-License-Identifier: Apache-2.0

name: How to build SymbiFlow examples in CI using conda/symbiflow/* containers from hdl/containers
name: How to build F4PGA examples in CI using conda/f4pga/* containers from hdl/containers

on:
schedule:
Expand All @@ -30,11 +30,11 @@ jobs:
xc7_String:
runs-on: ubuntu-latest
env:
IMAGE: gcr.io/hdl-containers/conda/symbiflow/xc7/a100t
IMAGE: gcr.io/hdl-containers/conda/f4pga/xc7/a100t
steps:
- uses: actions/checkout@v2
with:
repository: SymbiFlow/symbiflow-examples
repository: chipsalliance/f4pga-examples

- run: docker pull "$IMAGE"

Expand All @@ -46,11 +46,11 @@ jobs:
xc7_HereFile:
runs-on: ubuntu-latest
env:
IMAGE: gcr.io/hdl-containers/conda/symbiflow/xc7/a100t
IMAGE: gcr.io/hdl-containers/conda/f4pga/xc7/a100t
steps:
- uses: actions/checkout@v2
with:
repository: SymbiFlow/symbiflow-examples
repository: chipsalliance/f4pga-examples

- run: docker pull "$IMAGE"

Expand All @@ -63,53 +63,53 @@ jobs:
xc7_File:
runs-on: ubuntu-latest
env:
IMAGE: gcr.io/hdl-containers/conda/symbiflow/xc7/a100t
IMAGE: gcr.io/hdl-containers/conda/f4pga/xc7/a100t
steps:
- uses: actions/checkout@v2
with:
repository: SymbiFlow/symbiflow-examples
repository: chipsalliance/f4pga-examples

- run: docker pull "$IMAGE"

- run: |
cat > symbiflow-examples-tests.sh <<'EOF'
cat > f4pga-examples-tests.sh <<'EOF'
cd $(dirname "$0")
TARGET=arty_100 make -C xc7/picosoc_demo
EOF
- run: docker run --rm -v $(pwd):/wrk "$IMAGE" bash -le /wrk/symbiflow-examples-tests.sh
- run: docker run --rm -v $(pwd):/wrk "$IMAGE" bash -le /wrk/f4pga-examples-tests.sh


xc7_Shebang:
runs-on: ubuntu-latest
env:
IMAGE: gcr.io/hdl-containers/conda/symbiflow/xc7/a100t
IMAGE: gcr.io/hdl-containers/conda/f4pga/xc7/a100t
steps:
- uses: actions/checkout@v2
with:
repository: SymbiFlow/symbiflow-examples
repository: chipsalliance/f4pga-examples

- run: docker pull "$IMAGE"

- run: |
cat > symbiflow-examples-tests.sh <<'EOF'
cat > f4pga-examples-tests.sh <<'EOF'
#!/usr/bin/env -S bash -le
cd $(dirname "$0")
TARGET=arty_100 make -C xc7/picosoc_demo
EOF
chmod +x symbiflow-examples-tests.sh
chmod +x f4pga-examples-tests.sh
- run: docker run --rm -v $(pwd):/wrk "$IMAGE" /wrk/symbiflow-examples-tests.sh
- run: docker run --rm -v $(pwd):/wrk "$IMAGE" /wrk/f4pga-examples-tests.sh


eos-s3_String:
runs-on: ubuntu-latest
env:
IMAGE: gcr.io/hdl-containers/conda/symbiflow/eos-s3
IMAGE: gcr.io/hdl-containers/conda/f4pga/eos-s3
steps:
- uses: actions/checkout@v2
with:
repository: SymbiFlow/symbiflow-examples
repository: chipsalliance/f4pga-examples

- run: docker pull "$IMAGE"

Expand All @@ -121,11 +121,11 @@ jobs:
eos-s3_HereFile:
runs-on: ubuntu-latest
env:
IMAGE: gcr.io/hdl-containers/conda/symbiflow/eos-s3
IMAGE: gcr.io/hdl-containers/conda/f4pga/eos-s3
steps:
- uses: actions/checkout@v2
with:
repository: SymbiFlow/symbiflow-examples
repository: chipsalliance/f4pga-examples

- run: docker pull "$IMAGE"

Expand All @@ -138,40 +138,40 @@ jobs:
eos-s3_File:
runs-on: ubuntu-latest
env:
IMAGE: gcr.io/hdl-containers/conda/symbiflow/eos-s3
IMAGE: gcr.io/hdl-containers/conda/f4pga/eos-s3
steps:
- uses: actions/checkout@v2
with:
repository: SymbiFlow/symbiflow-examples
repository: chipsalliance/f4pga-examples

- run: docker pull "$IMAGE"

- run: |
cat > symbiflow-examples-tests.sh <<'EOF'
cat > f4pga-examples-tests.sh <<'EOF'
cd $(dirname "$0")
make -C eos-s3/btn_counter
EOF
- run: docker run --rm -v $(pwd):/wrk "$IMAGE" bash -le /wrk/symbiflow-examples-tests.sh
- run: docker run --rm -v $(pwd):/wrk "$IMAGE" bash -le /wrk/f4pga-examples-tests.sh


eos-s3_Shebang:
runs-on: ubuntu-latest
env:
IMAGE: gcr.io/hdl-containers/conda/symbiflow/eos-s3
IMAGE: gcr.io/hdl-containers/conda/f4pga/eos-s3
steps:
- uses: actions/checkout@v2
with:
repository: SymbiFlow/symbiflow-examples
repository: chipsalliance/f4pga-examples

- run: docker pull "$IMAGE"

- run: |
cat > symbiflow-examples-tests.sh <<'EOF'
cat > f4pga-examples-tests.sh <<'EOF'
#!/usr/bin/env -S bash -le
cd $(dirname "$0")
make -C eos-s3/btn_counter
EOF
chmod +x symbiflow-examples-tests.sh
chmod +x f4pga-examples-tests.sh
- run: docker run --rm -v $(pwd):/wrk "$IMAGE" /wrk/symbiflow-examples-tests.sh
- run: docker run --rm -v $(pwd):/wrk "$IMAGE" /wrk/f4pga-examples-tests.sh

0 comments on commit aef5255

Please sign in to comment.