Added array_sum yul #1
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 is a basic workflow to help you get started with Actions | |
name: CI | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the "main" branch | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: | |
- '**' | |
env: | |
fourmolu_url: https://github.com/fourmolu/fourmolu/releases/download/v0.7.0.1/fourmolu-0.7.0.1-linux-x86_64 | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
lint-vc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install formoulu | |
run: | | |
curl -L -o /usr/local/bin/fourmolu ${{env.fourmolu_url}} | |
chmod a+x /usr/local/bin/fourmolu | |
- name: Run fourmolu | |
run: | | |
find vc/src -name *.hs -exec fourmolu --mode 'check' {} + | |
- name: Install libtinfo (HLint dependency) | |
run: | | |
sudo apt-get install libtinfo6 | |
sudo apt-get install libtinfo5 | |
- name: 'Set up HLint' | |
uses: rwe/actions-hlint-setup@v1 | |
with: | |
version: '3.4.1' | |
- name: 'Run HLint' | |
uses: rwe/actions-hlint-run@v2 | |
with: | |
path: '["vc/src/"]' | |
fail-on: suggestion | |
build-vc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: freckle/stack-action@v4 | |
with: | |
working-directory: vc | |
pedantic: false | |
stack-arguments: --ghc-options -Werror | |
run-vc: | |
permissions: write-all | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v3 | |
- uses: freckle/stack-action@v4 | |
with: | |
working-directory: vc | |
pedantic: false | |
- if: github.ref == 'refs/heads/main' | |
name: Delete Build Cache on Main Push | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
gh extension install actions/gh-actions-cache | |
REPO=${{ github.repository }} | |
BRANCH=${{ github.ref }} | |
cacheKeysForPR=$(gh actions-cache list -R $REPO -B $BRANCH | grep "Linux-cache-build-" | cut -f 1 ) | |
set +e | |
echo "Deleting caches:" | |
for cacheKey in $cacheKeysForPR | |
do | |
gh actions-cache delete $cacheKey -R $REPO -B $BRANCH --confirm | |
echo $cacheKey | |
done | |
echo -e "\n\nDone" | |
- name: Cache Elan and Mathlib | |
id: cache-elan-mathlib | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-elan-mathlib | |
with: | |
path: | | |
./lake-packages | |
~/.elan | |
~/.profile | |
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/lakefile.lean') }} | |
- if: ${{ steps.cache-elan-mathlib.outputs.cache-hit != 'true' }} | |
name: Install Elan | |
run: | | |
curl https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh -sSf > elan_install.sh | |
chmod +x elan_install.sh | |
./elan_install.sh -y | |
source ~/.profile | |
echo $PATH >> $GITHUB_PATH | |
- if: ${{ steps.cache-elan-mathlib.outputs.cache-hit != 'true' }} | |
name: Get Mathlib cache | |
run: lake exe cache get | |
- name: Cache Build | |
id: cache-build | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-build | |
with: | |
path: | | |
./build | |
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/lakefile.lean') }} | |
- name: Run feedback loop | |
run: | | |
source ~/.profile | |
cd vc | |
./integration-tests.sh | |
build-aether: | |
permissions: write-all | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v3 | |
- uses: freckle/stack-action@v4 | |
with: | |
working-directory: vc | |
pedantic: false | |
- if: github.ref == 'refs/heads/main' | |
name: Delete Build Cache on Main Push | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
gh extension install actions/gh-actions-cache | |
REPO=${{ github.repository }} | |
BRANCH=${{ github.ref }} | |
cacheKeysForPR=$(gh actions-cache list -R $REPO -B $BRANCH | grep "Linux-cache-build-" | cut -f 1 ) | |
set +e | |
echo "Deleting caches:" | |
for cacheKey in $cacheKeysForPR | |
do | |
gh actions-cache delete $cacheKey -R $REPO -B $BRANCH --confirm | |
echo $cacheKey | |
done | |
echo -e "\n\nDone" | |
- name: Cache Elan and Mathlib | |
id: cache-elan-mathlib | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-elan-mathlib | |
with: | |
path: | | |
./lake-packages | |
~/.elan | |
~/.profile | |
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/lakefile.lean') }} | |
- if: ${{ steps.cache-elan-mathlib.outputs.cache-hit != 'true' }} | |
name: Install Elan | |
run: | | |
curl https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh -sSf > elan_install.sh | |
chmod +x elan_install.sh | |
./elan_install.sh -y | |
source ~/.profile | |
echo $PATH >> $GITHUB_PATH | |
- if: ${{ steps.cache-elan-mathlib.outputs.cache-hit != 'true' }} | |
name: Get Mathlib cache | |
run: lake exe cache get | |
- name: Cache Build | |
id: cache-build | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-build | |
with: | |
path: | | |
./build | |
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/lakefile.lean') }} | |
- name: Build | |
run: | | |
source ~/.profile | |
lake build |