Skip to content

Commit bc02ab4

Browse files
committed
Fix README URLs
Closes #22
1 parent ee83b1f commit bc02ab4

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This repository uses submodules to link against the different OmpSs@FPGA tools.
77
git clone --recursive https://gitlab.bsc.es/ompss-at-fpga/ompss-at-fpga-releases.git
88
```
99
To obtain further information about each tool, visit the README of each tool.
10-
For general information, visit the [OmpSs@FPGA User Guide](https://pm.bsc.es/ftp/ompss-at-fpga/doc/user-guide/index.html#ompss-fpga-user-guide).
10+
For general information, visit the [OmpSs@FPGA User Guide](https://pm.bsc.es/ftp/ompss-at-fpga/doc/user-guide-3.3.0/index.html#ompss-fpga-user-guide).
1111

1212

1313
### Build docker image
@@ -19,6 +19,6 @@ docker build --squash -t "ompss_at_fpga:unknwn" --force-rm .
1919
```
2020

2121
NOTES:
22-
- The `--squash` option creates a final image without the intermediate build layers. This creates a smaller but less modular image.
23-
This option requires the `--experimental` option in the docker daemon, see [docker build Reference Manual](https://docs.docker.com/engine/reference/commandline/#squash-an-images-layers---squash-experimental).
22+
- The `--squash` option creates a final image without the intermediate build layers. This creates a smaller but less modular image.
23+
This option requires the `--experimental` option in the docker daemon, see [docker build Reference Manual](https://docs.docker.com/engine/reference/commandline/build/#squash-an-images-layers---squash-experimental).
2424
- The `--force-rm` option removes the intermediate layers after build.

scripts/commit_release.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,15 @@ pushd `dirname ${BASH_SOURCE[0]}`/../ >/dev/null
1515
exit 0
1616
fi
1717

18+
#Set user-guide URL
19+
sed -i "s/\(user-guide-\)\([0-9]\|[.]\)*\(-rc[0-9]\?\)\?/\1${VERSION}/" README.md
20+
1821
#Enable the cache mode for credentials in metarepository and every submodule
1922
git config credential.helper cache
2023
git submodule foreach git config credential.helper cache
2124

2225
#Stash the updated subrepos and commit the changes + create the tag
23-
git add ait mcxx nanox ompss-at-fpga-kernel-module xdma xtasks Changelog.md
26+
git add ait mcxx nanox ompss-at-fpga-kernel-module xdma xtasks Changelog.md README.md
2427
git commit -m "OmpSs-at-FPGA release ${VERSION}"
2528
git tag ${VERSION}
2629
git push origin master --tags

scripts/do_release.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ pushd `dirname ${BASH_SOURCE[0]}`/../ >/dev/null
1515
exit 0
1616
fi
1717

18+
#Set user-guide URL
19+
sed -i "s/\(user-guide-\)\([0-9]\|[.]\)*\(-rc[0-9]\?\)\?/\1${VERSION}/" README.md
20+
1821
git config credential.helper cache
1922
git checkout master
2023
git submodule init

0 commit comments

Comments
 (0)