Skip to content

Commit

Permalink
Merge branch 'development' into integrate-slither
Browse files Browse the repository at this point in the history
  • Loading branch information
0xcodercrane committed Oct 31, 2022
2 parents ba490aa + 53aeb64 commit cac403e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,4 @@ fixtures/contracts-addresses/*
!.yarn/plugins
cache
build

out
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,8 @@
"purge:all": "yarn workspaces foreach run purge && rimraf node_modules",
"prettier:all": "yarn workspaces foreach run prettier",
"lint:all": "yarn workspaces foreach run lint",
"build:ci:cloudflare": "yarn build:dapp",
"build:ci:netlify": "yarn build:dapp",
"build:ci:fleek": "yarn build:dapp"
"build:ci:cloudflare": "bash ./utils/build_cloudflare.sh",
"build:ci:netlify": "yarn build:all"
},
"husky": {
"hooks": {
Expand Down
11 changes: 11 additions & 0 deletions utils/build_cloudflare.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# !/bin/bash

# rust setup
echo "Download and Install rustup"
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
source /opt/buildhome/.bashrc
# foundry setup
echo "Build foundry from the github source code"
cargo install --git https://github.com/foundry-rs/foundry foundry-cli anvil --bins --locked
# build workspace
yarn build:all

1 comment on commit cac403e

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy path: /home/runner/work/ubiquity-dollar/ubiquity-dollar/dist
Configuration path: /home/runner/work/ubiquity-dollar/ubiquity-dollar/netlify.toml
Deploying to main site URL...

Logs: https://app.netlify.com/sites/ubiquity-dollar/deploys/635ffe7b6c10bc00813a013c
Unique Deploy URL: https://635ffe7b6c10bc00813a013c--ubiquity-dollar.netlify.app
Website URL: https://netlify.ubq.fi

Please sign in to comment.