ci: replace linker #1661
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: CI | |
on: | |
push: | |
branches: | |
- master | |
- test-windows | |
pull_request: | |
branches: | |
- master | |
env: | |
# Tag for cache invalidation | |
CACHE_VERSION: v6 | |
jobs: | |
build: | |
name: Build Echidna on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
container: ${{ fromJSON(matrix.container || '{"image":null}') }} | |
strategy: | |
matrix: | |
include: | |
- os: windows-latest | |
shell: msys2 {0} | |
defaults: | |
run: | |
shell: ${{ matrix.shell }} | |
steps: | |
- name: Get Packages (macOS) | |
if: runner.os == 'macOS' | |
run: brew install automake | |
- name: Get Packages (Windows) | |
uses: msys2/setup-msys2@v2 | |
if: runner.os == 'Windows' | |
with: | |
msystem: CLANG64 | |
release: false | |
path-type: minimal | |
update: true | |
install: >- | |
base-devel | |
gmp-devel | |
openssl-devel | |
git | |
unzip | |
pacboy: >- | |
cmake:p | |
ninja:p | |
clang:p | |
lld:p | |
autotools:p | |
gmp:p | |
openssl:p | |
- name: Install Stack | |
uses: haskell-actions/setup@v2 | |
id: stack | |
if: matrix.container == '' | |
with: | |
ghc-version: '9.4' | |
enable-stack: true | |
stack-version: 'latest' | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Configure Haskell paths in MSYS2 (Windows) | |
if: runner.os == 'Windows' | |
run: | | |
HASKELL_PATHS="$(cygpath -u "$GHC_PATH"):$(cygpath -u "$CABAL_PATH"):$(cygpath -u "$STACK_PATH")" | |
echo "HASKELL_PATHS=$HASKELL_PATHS" >> "$GITHUB_ENV" | |
env: | |
GHC_PATH: ${{ steps.stack.outputs.ghc-path }} | |
CABAL_PATH: ${{ steps.stack.outputs.cabal-path }} | |
STACK_PATH: ${{ steps.stack.outputs.stack-path }} | |
- name: Cache Local | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.local | |
C:\msys64\home\runneradmin\.local | |
key: ${{ runner.os }}-local-${{ env.CACHE_VERSION }}-${{ hashFiles('.github/scripts/install-*') }} | |
- name: Cache Stack & Cabal | |
uses: actions/cache@v3 | |
with: | |
path: | | |
.stack-work | |
${{ steps.stack.outputs.cabal-store || '~/.cabal' }}/* | |
${{ steps.stack.outputs.stack-root || '~/.stack' }}/* | |
!${{ steps.stack.outputs.stack-root || '~/.stack' }}/pantry/hackage/*.tar | |
!${{ steps.stack.outputs.stack-root || '~/.stack' }}/pantry/hackage/*.tar.gz | |
key: ${{ runner.os }}-stack-${{ env.CACHE_VERSION }}-${{ hashFiles('package.yaml', 'stack.yaml') }} | |
- name: Build Libraries | |
run: | | |
.github/scripts/install-libsecp256k1.sh | |
.github/scripts/install-libff.sh | |
env: | |
HOST_OS: ${{ runner.os }} | |
- name: Build Dependencies | |
run: | | |
export PATH="$HASKELL_PATHS:$PATH" | |
stack build --ghc-options="-Werror" --extra-include-dirs=$HOME/.local/include --extra-lib-dirs=$HOME/.local/lib --only-dependencies $EXTRA_ARGS_WIN | |
env: | |
EXTRA_ARGS_WIN: ${{ (runner.os == 'Windows' && ' --extra-include-dirs=C:/msys64/clang64/include --extra-lib-dirs=C:/msys64/clang64/lib --ghc-options=-pgml=C:/msys64/clang64/bin/ld.lld.exe') || '' }} | |
- name: Build and install echidna | |
run: | | |
export PATH="$HASKELL_PATHS:$PATH" | |
stack install --flag echidna:static --ghc-options="-Werror" --extra-include-dirs=$HOME/.local/include --extra-lib-dirs=$HOME/.local/lib $EXTRA_ARGS_WIN | |
env: | |
EXTRA_ARGS_WIN: ${{ (runner.os == 'Windows' && ' --extra-include-dirs=C:/msys64/clang64/include --extra-lib-dirs=C:/msys64/clang64/lib --ghc-options=-pgml=C:/msys64/clang64/bin/ld.lld.exe') || '' }} | |
- name: Amend and compress binaries (macOS) | |
if: runner.os == 'macOS' | |
run: .github/scripts/build-macos-release.sh | |
- name: Compress binary (Linux) | |
if: runner.os == 'Linux' | |
run: GZIP=-9 tar -czf echidna.tar.gz -C $HOME/.local/bin/ echidna | |
- name: Compress binary (Windows) | |
if: runner.os == 'Windows' | |
run: GZIP=-9 tar -czf echidna.tar.gz -C $APPDATA/local/bin/ echidna.exe | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: echidna-${{ runner.os }} | |
path: echidna.tar.gz | |
- name: Build and copy test suite | |
if: runner.os != 'macOS' | |
run: | | |
stack build --flag echidna:static --test --no-run-tests --ghc-options="-Werror" --extra-include-dirs=$HOME/.local/include --extra-lib-dirs=$HOME/.local/lib | |
cp "$(find "$PWD" -name 'echidna-testsuite*' -type f)" . | |
if [ "${{ runner.os }}" = "Windows" ]; then | |
# work around https://gitlab.haskell.org/ghc/ghc/-/issues/21109 | |
strip echidna-testsuite* | |
fi | |
- name: Upload testsuite | |
if: runner.os != 'macOS' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: echidna-testsuite-${{ runner.os }} | |
path: echidna-testsuite* | |
test: | |
name: Test with solc ${{ matrix.solc }} on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
needs: build | |
continue-on-error: ${{ matrix.experimental || false }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
solc: | |
- "0.4.25" | |
- "0.5.7" | |
- "0.6.12" | |
- "0.7.5" | |
include: | |
- solc: "0.6.12" | |
experimental: true | |
- solc: "0.7.5" | |
experimental: true | |
- os: windows-latest | |
experimental: true | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.8' | |
- name: Install dependencies | |
shell: bash | |
run: | | |
.github/scripts/install-solc.sh | |
.github/scripts/install-crytic-compile.sh | |
env: | |
HOST_OS: ${{ runner.os }} | |
SOLC_VER: ${{ matrix.solc }} | |
- name: Download testsuite | |
uses: actions/download-artifact@v3 | |
with: | |
name: echidna-testsuite-${{ runner.os }} | |
- name: Test | |
run: | | |
solc-select use ${{ matrix.solc }} | |
chmod +x echidna-testsuite* | |
./echidna-testsuite* |