diff options
author | Sebastian Ehlert <28669218+awvwgk@users.noreply.github.com> | 2021-11-02 16:21:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-02 16:21:31 +0100 |
commit | a460e2760a4e33f086c9e1669b08e53885bdc197 (patch) | |
tree | 83fb8f0135d398a20a1cfea74d8dc43e77ee9bd4 /README.md | |
parent | 02fdf8dde8877cf2ac738fed8d20561da16cec1f (diff) | |
download | fpm-a460e2760a4e33f086c9e1669b08e53885bdc197.tar.gz fpm-a460e2760a4e33f086c9e1669b08e53885bdc197.zip |
Add workflow for continuous delivery (#569)
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -32,12 +32,15 @@ non-Fortran related package manager. ### Setting up fpm #### Binary download -`x86-64` binaries are available [to download](https://github.com/fortran-lang/fpm/releases) for Windows, MacOS and Linux. + +Binaries for the latest stable release are available [to download](https://github.com/fortran-lang/fpm/releases/latest) for Windows, MacOS, and Linux. __Note:__ On Linux and MacOS, you will need to enable executable permission before you can use the binary. _e.g._ `$ chmod u+x fpm-0.4.0-linux-x86_64` +The binaries at the [current tag](https://github.com/fortran-lang/fpm/releases/tag/current) are updated automatically to always provide the current git version from the default branch. + #### [Conda] @@ -147,7 +150,7 @@ To build manually using the single source distribution, run the following code ( ``` mkdir _tmp -curl -LJ https://github.com/fortran-lang/fpm/releases/download/v0.4.0/fpm-0.4.0.F90 > _tmp/fpm.F90 +curl -LJ https://github.com/fortran-lang/fpm/releases/download/current/fpm.F90 > _tmp/fpm.F90 gfortran -J _tmp _tmp/fpm.F90 -o _tmp/fpm _tmp/fpm install --flag "-g -fbacktrace -O3" rm -r _tmp |