Put the newly-built print-api in the PATH of the CI runner #64
Workflow file for this run
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
name: Tests Pipeline | |
on: | |
pull_request: | |
push: | |
branches: ['main'] | |
jobs: | |
generate-matrix: | |
name: 'Generate matrix from cabal' | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Extract the tested GHC versions | |
id: set-matrix | |
uses: kleidukos/[email protected] | |
with: | |
cabal-file: print-api.cabal | |
ubuntu-version: 'latest' | |
macos-version: 'latest' | |
version: 0.1.7.1 | |
generate-alpine-matrix: | |
name: 'Generate Alpine matrix from cabal' | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Extract the tested GHC versions | |
id: set-matrix | |
uses: kleidukos/[email protected] | |
with: | |
cabal-file: print-api.cabal | |
version: 0.1.7.1 | |
ubuntu-version: 'latest' | |
builds: | |
name: ${{ matrix.ghc }} on ${{ matrix.os }} | |
needs: generate-matrix | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: ${{ fromJSON(needs.generate-matrix.outputs.matrix) }} | |
steps: | |
- name: Checkout base repo | |
uses: actions/checkout@v4 | |
- name: "Install tools" | |
run: | | |
.github/workflows/install-tools.sh | |
- name: Set up Haskell | |
id: setup-haskell | |
uses: haskell-actions/setup@v2 | |
with: | |
ghc-version: ${{ matrix.ghc }} | |
cabal-version: 'latest' | |
- name: Configure | |
run: | | |
ARCHITECTURE=$(uname -m) | |
echo "ARCH=$ARCHITECTURE" >> $GITHUB_ENV | |
echo ${{ env.ARCH }} | |
cabal configure --enable-tests | |
- name: 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 }}-${{ hashFiles('**/plan.json') }} | |
restore-keys: ${{ runner.os }}-ghc-${{ matrix.ghc }}- | |
- name: Build | |
run: cabal build --project-file=cabal.release.project | |
- name: Install | |
run: | | |
bin=$(cabal -v0 --project-file=cabal.static.project list-bin print-api) | |
mkdir distribution | |
cp ${bin} distribution/print-api | |
- name: File type | |
run: file distribution/print-api | |
- name: Package the print-api executable | |
run: | | |
PRINTAPI_EXEC=distribution/print-api | |
.github/workflows/process-binaries.sh | |
DIR=$(dirname $PRINTAPI_EXEC) | |
FILE=$(basename $PRINTAPI_EXEC) | |
PRINTAPI_EXEC_TAR=print-api-head-${{ runner.os }}-${{ matrix.ghc }}-${{ env.ARCH }}.tar.gz | |
tar -czvf $PRINTAPI_EXEC_TAR -C $DIR $FILE | |
echo PRINTAPI_EXEC_TAR=$PRINTAPI_EXEC_TAR >> $GITHUB_ENV | |
- name: Upload the print-api executable | |
uses: actions/upload-artifact@v3 | |
with: | |
name: artifact | |
path: ${{ env.PRINTAPI_EXEC_TAR }} | |
build-alpine: | |
name: ${{ matrix.ghc }} on alpine-3.19 | |
needs: generate-alpine-matrix | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: ${{ fromJSON(needs.generate-alpine-matrix.outputs.matrix) }} | |
container: 'alpine:3.19' | |
steps: | |
- name: Install extra dependencies | |
shell: sh | |
run: | | |
apk add bash binutils-gold curl \ | |
curl file g++ gcc git gmp-dev \ | |
jq libc-dev libffi-dev make \ | |
musl-dev ncurses-dev perl pkgconfig \ | |
sudo tar upx xz zlib-dev zlib-static | |
- uses: actions/checkout@v4 | |
- uses: haskell-actions/setup@v2 | |
id: setup-haskell | |
with: | |
ghc-version: ${{ matrix.ghc }} | |
cabal-version: 'latest' | |
- name: Configure | |
run: | | |
ARCHITECTURE=$(uname -m) | |
echo "ARCH=$ARCHITECTURE" >> $GITHUB_ENV | |
echo ${{ env.ARCH }} | |
cabal configure --enable-tests | |
- name: Freeze | |
run: cabal freeze --project-file=cabal.static.project | |
- uses: actions/cache@v4 | |
with: | |
path: ${{ steps.setup-haskell.outputs.cabal-store }} | |
key: ${{ runner.os }}-ghc-${{ steps.setup.outputs.ghc-version }}-${{ hashFiles('**/plan.json') }} | |
restore-keys: ${{ runner.os }}-${{ steps.setup.outputs.ghc-version }}- | |
- name: Build | |
run: cabal build --project-file=cabal.static.project | |
- name: Install | |
run: | | |
bin=$(cabal -v0 --project-file=cabal.static.project list-bin print-api) | |
mkdir distribution | |
cp ${bin} distribution/print-api | |
echo "$GITHUB_WORKSPACE/distribution" >> "$GITHUB_PATH" | |
- name: Test | |
run: cabal test --project-file=cabal.static.project --test-options "--xml=../print-api/report.xml" all | |
- name: Publish Test Report | |
uses: mikepenz/action-junit-report@v4 | |
if: success() || failure() # always run even if the previous step fails | |
with: | |
report_paths: "report.xml" | |
- name: File type | |
run: file distribution/print-api | |
- name: Tar print-api executable | |
run: | | |
PRINTAPI_EXEC=distribution/print-api | |
.github/workflows/process-binaries.sh | |
DIR=$(dirname $PRINTAPI_EXEC) | |
FILE=$(basename $PRINTAPI_EXEC) | |
PRINTAPI_EXEC_TAR=print-api-head-${{ runner.os }}-static-${{ matrix.ghc }}-${{ env.ARCH }}.tar.gz | |
tar -czvf $PRINTAPI_EXEC_TAR -C $DIR $FILE | |
echo PRINTAPI_EXEC_TAR=$PRINTAPI_EXEC_TAR >> $GITHUB_ENV | |
- name: Upload print-api executable to workflow artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: artifact | |
path: ${{ env.PRINTAPI_EXEC_TAR }} | |
prerelease-head: | |
name: Create a GitHub prerelease with the binary artifacts | |
runs-on: ubuntu-latest | |
needs: ['builds', 'build-alpine'] | |
steps: | |
- uses: actions/download-artifact@v3 | |
with: | |
name: artifact | |
path: ./out | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
draft: true | |
files: ./out/* |