Skip to content

bytezap only (now external); tweaks and fixes #155

bytezap only (now external); tweaks and fixes

bytezap only (now external); tweaks and fixes #155

Workflow file for this run

# The matrix feature is overused because it lets us do globals and interpolation
# in more places (where we're for some reason forbidden from using workflow
# environment variables).
#
# TODO
#
# * Uploading executables by running `cabal install`, because that saves them
# to a known place. Not ideal, and we guess that "known" place.
# * `cabal build` and `cabal install` have bugs and inconsistencies, stripping
# may not work, our flags might get thrown away between `cabal` calls.
name: CI
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
# If env.exe exists, jobs will build and upload the specified executable with
# optimizations (-O2). If it doesn't exist, jobs will build without
# optimizations (-O0).
#env:
# exe: bytepatch
jobs:
ubuntu-cabal-test:
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} / test / GHC ${{ matrix.ghc }}, Cabal
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
cabal: [latest]
ghc:
- 9.2.4
include:
- ghc: 9.2.4
build: release
steps:
# TODO: GHC decides to recompile based on timestamp, so cache isn't used
# Preferably GHC would work via hashes instead. Stack had this feature
# merged in Aug 2020.
# Upstream GHC issue: https://gitlab.haskell.org/ghc/ghc/-/issues/16495
# My issue on haskell/actions: https://github.com/haskell/actions/issues/41
# This also requires us to do a deep fetch, else we don't get the Git commit
# history we need to rewrite mod times.
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set all tracked file modification times to the time of their last commit
run: |
rev=HEAD
IFS=$'\n'
for f in $(git ls-tree -r -t --full-name --name-only "$rev") ; do
touch -d $(git log --pretty=format:%cI -1 "$rev" -- "$f") "$f";
done
- name: Setup Haskell build environment
id: setup-haskell-build-env
uses: haskell/actions/setup@v1
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}
- run: cabal freeze
- name: Cache Cabal build artifacts
uses: actions/cache@v2
with:
path: |
${{ steps.setup-haskell-build-env.outputs.cabal-store }}
dist-newstyle
key: test-cabal-build-artifacts-${{ runner.os }}-ghc_${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }}
restore-keys: test-cabal-build-artifacts-${{ runner.os }}-ghc_${{ matrix.ghc }}
- name: Build (exe)
if: "env.exe != 0 && matrix.build == 'release'"
run: cabal build -O2
- name: Build (skip exe)
if: "env.exe != 0 && matrix.build != 'release'"
run: cabal build -O0
- name: Build (no exe)
if: "env.exe == 0"
run: cabal build -O0
- name: Test
run: cabal test --test-show-details=streaming
env:
HSPEC_OPTIONS: --color
- name: Install
if: "env.exe != 0 && matrix.build == 'release'"
run: cabal install
# note that Cabal uses symlinks -- actions/upload-artifact@v2 apparently
# dereferences for us
- name: Upload executable
if: "env.exe != 0 && matrix.build == 'release'"
uses: actions/upload-artifact@v2
with:
path: ~/.cabal/bin/${{ env.exe }}
name: ${{ env.exe }}-${{ runner.os }}-ghc_${{ matrix.ghc }}-cabal-${{ github.sha }}
if-no-files-found: error
mac-cabal-test:
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} / test / GHC ${{ matrix.ghc }}, Cabal
strategy:
fail-fast: false
matrix:
os: [macos-latest]
cabal: [latest]
ghc:
- 9.2.4
include:
- ghc: 9.2.4
build: release
steps:
# TODO figure out timestamp fixer on Mac (no Mac available to test)
- uses: actions/checkout@v2
- name: Setup Haskell build environment
id: setup-haskell-build-env
uses: haskell/actions/setup@v1
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}
- name: Prepare icu4c for developer usage (expose to pkg-config)
run: echo "PKG_CONFIG_PATH=/usr/local/opt/icu4c/lib/pkgconfig:$PKG_CONFIG_PATH" >> $GITHUB_ENV
- run: cabal freeze
- name: Cache Cabal build artifacts
uses: actions/cache@v2
with:
path: |
${{ steps.setup-haskell-build-env.outputs.cabal-store }}
dist-newstyle
key: test-cabal-build-artifacts-${{ runner.os }}-ghc_${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }}
restore-keys: test-cabal-build-artifacts-${{ runner.os }}-ghc_${{ matrix.ghc }}
- name: Build (exe)
if: "env.exe != 0 && matrix.build == 'release'"
run: cabal build -O2
- name: Build (skip exe)
if: "env.exe != 0 && matrix.build != 'release'"
run: cabal build -O0
- name: Build (no exe)
if: "env.exe == 0"
run: cabal build -O0
- name: Test
run: cabal test --test-show-details=streaming
env:
HSPEC_OPTIONS: --color
- name: Install
if: "env.exe != 0 && matrix.build == 'release'"
run: cabal install
# note that Cabal uses symlinks -- actions/upload-artifact@v2 apparently
# dereferences for us
- name: Upload executable
if: "env.exe != 0 && matrix.build == 'release'"
uses: actions/upload-artifact@v2
with:
path: ~/.cabal/bin/${{ env.exe }}
name: ${{ env.exe }}-${{ runner.os }}-ghc_${{ matrix.ghc }}-cabal-${{ github.sha }}
if-no-files-found: error
windows-cabal-test:
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} (MSYS2, ${{ matrix.msystem }})) / test / GHC ${{ matrix.ghc }}, Cabal
strategy:
fail-fast: false
matrix:
os: [windows-latest]
cabal: [latest]
ghc:
- 9.2.4
msystem: [MINGW64]
include:
- ghc: 9.2.4
build: release
steps:
- uses: actions/checkout@v2
- uses: msys2/setup-msys2@v2
with:
msystem: ${{ matrix.msystem }}
pacboy: >-
pkgconf:p
icu:p
location: D:\
- name: Install ghcup
run: 'Set-ExecutionPolicy Bypass -Scope Process -Force;[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072;Invoke-Command -ScriptBlock ([ScriptBlock]::Create((Invoke-WebRequest https://www.haskell.org/ghcup/sh/bootstrap-haskell.ps1 -UseBasicParsing))) -ArgumentList $false,$true,$true,$false,$false,$false,$false,"C:\","https://gitlab.haskell.org/haskell/ghcup-hs/-/raw/v0.1.17.5/scripts/bootstrap/bootstrap-haskell","D:\msys64","C:\cabal"'
# TODO idk why this doesn't work
- run: echo "source /c/ghcup/env" >> ~/.bashrc
shell: msys2 {0}
- run: >-
sed --in-place
's/extra-lib-dirs: /extra-lib-dirs: C:\\ghcup\\ghc\\${{ matrix.ghc }}\\x86_64-w64-mingw32\\lib, /g'
/c/cabal/config
shell: msys2 {0}
- run: ghcup install cabal ${{ matrix.cabal }} --set
- run: ghcup install ghc ${{ matrix.ghc }} --set
- name: Cache global Cabal store
uses: actions/cache@v2
with:
path: C:/cabal/store
key: test-cabal-global-store-${{ runner.os }}-ghc_${{ matrix.ghc }}
- run: cabal update
- run: cabal freeze
shell: msys2 {0}
env:
BASH_ENV: /c/ghcup/env
- name: (binrep) Cache project Cabal store
uses: actions/cache@v2
with:
path: dist-newstyle
key: test-cabal-project-binrep-${{ runner.os }}-ghc_${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }}
restore-keys: test-cabal-project-binrep-${{ runner.os }}-ghc_${{ matrix.ghc }}
- name: (binrep) Build (no exe)
run: cabal build -O0
shell: msys2 {0}
env:
BASH_ENV: /c/ghcup/env
- name: (binrep) Test
run: cabal test --test-show-details=streaming
shell: msys2 {0}
env:
BASH_ENV: /c/ghcup/env
HSPEC_OPTIONS: --color