Skip to content

Commit

Permalink
Intermediate Release (#877)
Browse files Browse the repository at this point in the history
## Describe your changes
1. Changes the Listing process from Orderbook Council to General Council
2. OB Fixes.


## Checklist before requesting a review
- [ ] I have performed a self-review of my code.
- [ ] If it is a core feature, I have added thorough tests.
- [ ] I removed all Clippy and Formatting Warnings. 
- [ ] I added required Copyrights.
  • Loading branch information
Gauthamastro committed Nov 1, 2023
2 parents e4a309f + 21ec73f commit f03860c
Show file tree
Hide file tree
Showing 41 changed files with 7,838 additions and 1,457 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
name: Continuous Integration

on:
pull_request: []
pull_request:
types: [labeled]
push:
branches: [Develop, mainnet-release]

env:
RUNNER_INSTANCE_TYPE: c5d.9xlarge
RUNNER_INSTANCE_TYPE: c5d.4xlarge

jobs:
start-runner:
name: Start self-hosted EC2 runner
# Run the job only if it has proper label or it is triggered by the push to the dev or main branch.
if: |
contains(github.event.pull_request.labels.*.name, 'A0-PleaseReview') ||
contains(github.event_name, 'push')
runs-on: ubuntu-latest
outputs:
label: ${{ steps.start-ec2-runner.outputs.label }}
Expand Down Expand Up @@ -59,7 +64,9 @@ jobs:
default: true
components: rustfmt, clippy
- name: Install .toml files linter
run: cargo install taplo-cli
run: |
curl -fsSL https://github.com/tamasfe/taplo/releases/latest/download/taplo-linux-x86_64.gz \
| gzip -d - | install -m 755 /dev/stdin /usr/local/bin/taplo
- name: Checkout to the current branch
uses: actions/checkout@v3
- name: Cache Rust Dependencies
Expand Down

0 comments on commit f03860c

Please sign in to comment.