aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/CI.yml49
-rw-r--r--README.md15
2 files changed, 60 insertions, 4 deletions
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml
index 03fcf84..8165ded 100644
--- a/.github/workflows/CI.yml
+++ b/.github/workflows/CI.yml
@@ -1,6 +1,10 @@
name: CI
-on: [push, pull_request]
+on:
+ push:
+ pull_request:
+ release:
+ types: [published]
env:
CI: "ON" # We can detect this in the build system and other vendors implement it
@@ -23,16 +27,33 @@ jobs:
- os: ubuntu-latest
STACK_CACHE: "/home/runner/.stack/"
STACK_CACHE_VERSION: ""
+ GET_VERSION_CMD: echo ${{ github.ref }} | cut -dv -f2
+ CHECK_VERSION_CMD: grep $(cat fpm_version)
+ RELEASE_CMD: "fpm run --flag --static --flag -g --flag -fbacktrace --flag -O3 --runner cp -- fpm-v$(cat fpm_version)-linux-x86_64"
+ BOOTSTRAP_RELEASE_CMD: cp /home/runner/.local/bin/fpm fpm-bootstrap-v$(cat fpm_version)-linux-x86_64
+ HASH_CMD: ls fpm-*|xargs -i{} sh -c 'sha256sum $1 > $1.sha256' -- {}
+
- os: macos-latest
STACK_CACHE: |
/Users/runner/.stack/snapshots
/Users/runner/.stack/setup-exe-src
STACK_CACHE_VERSION: "v2"
+ GET_VERSION_CMD: echo ${{ github.ref }} | cut -dv -f2
+ CHECK_VERSION_CMD: grep $(cat fpm_version)
+ RELEASE_CMD: "fpm run --flag -g --flag -fbacktrace --flag -O3 --runner cp -- fpm-v$(cat fpm_version)-macos-x86_64"
+ BOOTSTRAP_RELEASE_CMD: cp /Users/runner/.local/bin/fpm fpm-bootstrap-v$(cat fpm_version)-macos-x86_64
+ HASH_CMD: ls fpm-*|xargs -I{} sh -c 'shasum -a 256 $1 > $1.sha256' -- {}
+
- os: windows-latest
STACK_CACHE: |
C:\Users\runneradmin\AppData\Roaming\stack
C:\Users\runneradmin\AppData\Local\Programs\stack
STACK_CACHE_VERSION: "v2"
+ GET_VERSION_CMD: ("${{ github.ref }}" -Split "v")[1]
+ CHECK_VERSION_CMD: Select-String -Pattern Version | Where-Object { if ($_ -like -join("*",(Get-Content fpm_version),"*")) {echo $_} else {Throw} }
+ RELEASE_CMD: fpm run --flag --static --flag -g --flag -fbacktrace --flag -O3 --runner copy -- (-join("fpm-v",(Get-Content fpm_version),"-windows-x86_64.exe"))
+ BOOTSTRAP_RELEASE_CMD: copy C:\Users\runneradmin\AppData\Roaming\local\bin\fpm.exe (-join("fpm-bootstrap-v",(Get-Content fpm_version),"-windows-x86_64.exe"))
+ HASH_CMD: Get-ChildItem -File -Filter "fpm-*" | Foreach-Object {echo (Get-FileHash -Algorithm SHA256 $PSItem | Select-Object hash | Format-Table -HideTableHeaders | Out-String) > (-join($PSItem,".sha256"))}
env:
FC: gfortran
@@ -104,3 +125,29 @@ jobs:
if: contains(matrix.os, 'windows')
run: |
ci\run_tests.bat
+
+ # ----- Upload binaries if creating a release -----
+ - name: Check that fpm --version matches release tag
+ if: github.event_name == 'release'
+ run: |
+ cd fpm
+ ${{ matrix.GET_VERSION_CMD }} > fpm_version
+ fpm run -- "--version" | ${{ matrix.CHECK_VERSION_CMD }}
+
+ - name: Stage release files for upload
+ if: github.event_name == 'release'
+ run: |
+ cd fpm
+ ${{ matrix.RELEASE_CMD }}
+ ${{ matrix.BOOTSTRAP_RELEASE_CMD }}
+ ${{ matrix.HASH_CMD }}
+
+ - name: Upload assets
+ if: github.event_name == 'release'
+ uses: svenstaro/upload-release-action@v2
+ with:
+ repo_token: ${{ secrets.GITHUB_TOKEN }}
+ file: fpm/fpm-*
+ file_glob: true
+ tag: ${{ github.ref }}
+ overwrite: true \ No newline at end of file
diff --git a/README.md b/README.md
index bd45978..a9d1a02 100644
--- a/README.md
+++ b/README.md
@@ -17,7 +17,16 @@ To report a bug report or suggest a feature, please read our
## Getting started
-### Install Haskell
+### Binary download
+`x86-64` binaries are available [to download](https://github.com/fortran-lang/fpm/releases) 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-v0.1.0-linux-x86_64`
+
+### Build from source
+
+#### Install Haskell
To install **Haskell Stack**, follow these
[instructions](https://docs.haskellstack.org/en/stable/install_and_upgrade/),
@@ -25,14 +34,14 @@ users without superuser (admin) permissions should follow the
[manual installation](https://docs.haskellstack.org/en/stable/install_and_upgrade/#manual-download_2)
procedure.
-### Download this repository
+#### Download this repository
```bash
$ git clone https://github.com/fortran-lang/fpm
$ cd fpm/
```
-### Build and test fpm
+#### Build and test fpm
Bootstrap *fpm* using: