-
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
10 changed files
with
150 additions
and
44 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 |
---|---|---|
|
@@ -4,12 +4,12 @@ name: CI | |
on: | ||
pull_request: | ||
push: | ||
branches: ["main"] | ||
branches: ['main'] | ||
|
||
jobs: | ||
generate-matrix: | ||
name: "Generate matrix from cabal" | ||
outputs: | ||
name: 'Generate matrix from cabal' | ||
outputs: | ||
matrix: ${{ steps.set-matrix.outputs.matrix }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
@@ -18,8 +18,8 @@ jobs: | |
uses: kleidukos/[email protected] | ||
with: | ||
cabal-file: confer.cabal | ||
ubuntu-version: "latest" | ||
macos: "macos-13" | ||
ubuntu-version: 'latest' | ||
macos: 'macos-13' | ||
version: 0.1.7.0 | ||
tests: | ||
name: ${{ matrix.ghc }} on ${{ matrix.os }} | ||
|
@@ -39,14 +39,114 @@ jobs: | |
- name: Configure | ||
run: cabal configure --enable-tests | ||
- name: Freeze | ||
run: cabal freeze | ||
run: cabal freeze --project-file=cabal.release.project | ||
- name: Cache | ||
uses: actions/[email protected] | ||
with: | ||
path: ${{ steps.setup-haskell.outputs.cabal-store }} | ||
key: ${{ runner.os }}-ghc-${{ matrix.ghc }}-cabal-${{ hashFiles('**/plan.json') }} | ||
restore-keys: ${{ runner.os }}-ghc-${{ matrix.ghc }}- | ||
- name: Build | ||
run: cabal new-build | ||
run: cabal build --project-file=cabal.release.project | ||
- name: Test | ||
run: cabal new-test all | ||
run: cabal test --project-file=cabal.release.project all | ||
- name: Package the confer-head executable | ||
run: | | ||
CONFER_EXEC=$(cabal list-bin --project-file=cabal.release.project confer:exe:confer) | ||
DIR=$(dirname $CONFER_EXEC) | ||
FILE=$(basename $CONFER_EXEC) | ||
CONFER_EXEC_TAR=confer-head-${{ runner.os }}-x86_64.tar.gz | ||
tar -czvf $CONFER_EXEC_TAR -C $DIR $FILE | ||
echo CONFER_EXEC_TAR=$CONFER_EXEC_TAR >> $GITHUB_ENV | ||
- name: Upload the confer-head executable | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: confer-${{ runner.os }}-x86_64 | ||
path: ${{ env.CONFER_EXEC_TAR }} | ||
|
||
build-alpine: | ||
name: Build statically linked using alpine | ||
runs-on: ubuntu-latest | ||
container: 'alpine:3.19' | ||
needs: ['generate-matrix', 'tests'] | ||
strategy: | ||
matrix: ${{ fromJSON(needs.generate-matrix.outputs.matrix) }} | ||
steps: | ||
- name: Install extra dependencies | ||
shell: sh | ||
run: | | ||
apk add bash curl sudo jq pkgconfig \ | ||
zlib-dev zlib-static binutils-gold curl \ | ||
gcc g++ gmp-dev libc-dev libffi-dev make \ | ||
musl-dev ncurses-dev perl tar xz git | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: haskell-actions/setup@v2 | ||
id: setup-haskell | ||
with: | ||
ghc-version: ${{ matrix.ghc }} | ||
cabal-version: 'latest' | ||
|
||
- name: Configure | ||
run: cabal configure --enable-tests | ||
|
||
- name: Freeze | ||
run: cabal freeze --project-file=cabal.release.project | ||
|
||
- uses: actions/cache@v4 | ||
with: | ||
path: ${{ steps.setup-haskell.outputs.cabal-store }} | ||
key: ${{ runner.os }}-ghc-${{ matrix.ghc }}-cabal-${{ hashFiles('**/plan.json') }} | ||
restore-keys: ${{ runner.os }}-ghc-${{ matrix.ghc }}- | ||
|
||
- name: Enable statically linked executables | ||
run: | | ||
echo 'executable-static: true' >> cabal.release.project | ||
- name: Build | ||
run: cabal build --project-file=cabal.release.project | ||
|
||
- name: Test | ||
run: cabal test --project-file=cabal.release.project all | ||
|
||
- name: Tar cabal head executable | ||
run: | | ||
CONFER_EXEC=$(cabal list-bin --project-file=cabal.release.project confer:exe:confer) | ||
DIR=$(dirname $CONFER_EXEC) | ||
FILE=$(basename $CONFER_EXEC) | ||
CONFER_EXEC_TAR=confer-head-${{ runner.os }}-x86_64.tar.gz | ||
tar -czvf $CONFER_EXEC_TAR -C $DIR $FILE | ||
echo CONFER_EXEC_TAR=$CONFER_EXEC_TAR >> $GITHUB_ENV | ||
- name: Upload confer executable to workflow artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: cabal-${{ runner.os }}-static-x86_64 | ||
path: ${{ env.CONFER_EXEC_TAR }} | ||
|
||
prerelease-head: | ||
name: Create a GitHub prerelease with the binary artifacts | ||
runs-on: ubuntu-latest | ||
if: github.ref == 'refs/heads/main' | ||
needs: ['tests', 'build-alpine'] | ||
|
||
steps: | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: confer-Linux-x86_64 | ||
|
||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: confer-Linux-static-x86_64 | ||
|
||
- name: Create GitHub prerelease | ||
uses: marvinpinto/[email protected] | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
automatic_release_tag: confer-head | ||
prerelease: true | ||
title: confer-head | ||
files: | | ||
confer-head-Linux-x86_64.tar.gz | ||
confer-head-Linux-static-x86_64.tar.gz |
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 |
---|---|---|
|
@@ -3,3 +3,4 @@ tags | |
tags.mtime | ||
.hpc | ||
*.tix | ||
*.local |
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 |
---|---|---|
|
@@ -8,8 +8,6 @@ test-show-details: direct | |
|
||
documentation: True | ||
|
||
optimization: 2 | ||
|
||
tests: True | ||
|
||
-- package confer | ||
|
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,14 @@ | ||
import: cabal.project | ||
|
||
optimization: 2 | ||
|
||
documentation: False | ||
|
||
flags: -development | ||
|
||
package * | ||
ghc-options: | ||
-flate-specialise -funbox-strict-fields | ||
-finline-generics-aggressively -fexpose-all-unfoldings | ||
-Wwarn=extended-warnings -fdicts-strict -fmax-worker-args=16 | ||
-fspec-constr-recursive=16 -funbox-strict-fields |
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