Skip to content

Commit

Permalink
Merge pull request #30 from holochain/update-holochain
Browse files Browse the repository at this point in the history
Update for Holochain v0.4.0-dev.15
  • Loading branch information
mjbrisebois authored Aug 20, 2024
2 parents a91b579 + 8b3c813 commit 708ac1f
Show file tree
Hide file tree
Showing 25 changed files with 2,169 additions and 2,104 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/all-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: All Tests

on:
push:
branches:
- main
- develop
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Install Nix
uses: cachix/install-nix-action@v27
with:
nix_path: nixpkgs=channel:nixos-unstable

- name: Build Packages
run: |
nix develop --command make dnas/deepkey.dna
- name: Run Tests
run: |
output=$(DEBUG_LEVEL=trace nix develop --command bash -c 'make test | tee >(cat >&2); exit ${PIPESTATUS[0]}');
if [ ${PIPESTATUS[0]} -ne 0 ]; then exit ${PIPESTATUS[0]}; fi
passing=$(echo "$output" | grep -oP '\d+ passing' | grep -oP '\d+' | awk '{sum+=$1} END {print sum}')
failing=$(echo "$output" | grep -oP '\d+ failing' | grep -oP '\d+' | awk '{sum+=$1} END {print sum}')
pending=$(echo "$output" | grep -oP '\d+ pending' | grep -oP '\d+' | awk '{sum+=$1} END {print sum}')
echo "## Summary" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "| Passed | Failed | Pending |" >> $GITHUB_STEP_SUMMARY
echo "|----------|----------|----------|" >> $GITHUB_STEP_SUMMARY
echo "| $passing | $failing | $pending |" >> $GITHUB_STEP_SUMMARY
if [ "$failing" -ne 0 ]; then exit 1; fi
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/.cargo
/.rustup
/target
/node_modules
/dnas/*/zomelets/node_modules
Expand Down
Loading

0 comments on commit 708ac1f

Please sign in to comment.