Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stargate token #2

Merged
merged 2 commits into from
Apr 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
5 changes: 0 additions & 5 deletions .dockerignore

This file was deleted.

39 changes: 39 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# This is a basic workflow that is manually triggered

name: zenchain

# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on: [push, pull_request]

# This workflow makes x86_64 binaries for mac, windows, and linux.

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
arch: [amd64, arm64]
targetos: [windows, darwin, linux]
name: zenchain ${{ matrix.arch }} for ${{ matrix.targetos }}
steps:
- uses: actions/checkout@v2
- name: Setup go
uses: actions/setup-go@v1
with:
go-version: 1.15
env:
GOOS: ${{ matrix.targetos }}
GOARCH: ${{ matrix.arch }}

- name: Compile
run: |
go mod download
cd cmd/zenchaind
go build .

- uses: actions/upload-artifact@v2
with:
name: zenchaind ${{ matrix.targetos }} ${{ matrix.arch }}
path: cmd/zenchaind/zenchaind

24 changes: 24 additions & 0 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build and Deploy
on: [push]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2.3.1 # If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly.
with:
persist-credentials: false

- name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
run: |
cd vue
npm install
npm run build

- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: vue/dist # The folder the action should deploy.
CLEAN: true # Automatically remove deleted files from the deploy branch
74 changes: 3 additions & 71 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,71 +1,3 @@
# OS
.DS_Store
*.swp
*.swo
*.swl
*.swm
*.swn
.vscode
.idea

# Build
vendor
build
tools/
tools/bin/*
examples/build/*
docs/_build
docs/tutorial
dist
tools-stamp
doc

# Data - ideally these don't exist
baseapp/data/*
client/lcd/keys/*
cmd/zenchaincli/statik/statik.go
mytestnet
doc/statik/statik.go
dev/cache
cmd/launch/launch
cmd/zenchaincli/zenchaincli
cmd/zenchaind/zenchaind
cmd/zenchaintool/zenchaintool
cmd/tiger/tiger
cmd/zenchaind/testnet_okchain.go
dev/testnet/cache
testnet_zenchain.go
tools


# Testing
coverage.txt
profile.out
profile.cov
profile_tmp.cov
coverage.html
unittest

# Vagrant
.vagrant/
*.box
*.log
*.json
vagrant

# IDE
.idea/
*.iml
*.yaml

# Graphviz
dependency-graph.png

# Latex
*.aux
*.out
*.synctex.gz
contract_tests/*
dev/cache/*
result.txt
ethermint
vue/node_modules
vue/dist
secret.yml
49 changes: 0 additions & 49 deletions CHANGELOG.md

This file was deleted.

29 changes: 0 additions & 29 deletions Dockerfile

This file was deleted.

134 changes: 0 additions & 134 deletions Makefile

This file was deleted.

Loading