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

[CHORE] Update Frequency to v0.9.30 #744

Merged
merged 26 commits into from
Dec 13, 2022
Merged
Show file tree
Hide file tree
Changes from 13 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
1979802
minor update
saraswatpuneet Dec 5, 2022
e9477ae
upgrade to .9.30
saraswatpuneet Dec 5, 2022
9c38776
upgrade to 0.9.30
saraswatpuneet Dec 5, 2022
8cf16f1
weight updates
saraswatpuneet Dec 5, 2022
2629e86
set runtime origin in mocks/tests
saraswatpuneet Dec 5, 2022
0cb2fb6
install protobuf package
demisx Dec 5, 2022
9237063
fix tests, weights and benchmarks for .9.30
saraswatpuneet Dec 5, 2022
f6b6e86
Merge branch 'chore/upgrade_0.9.32-fix-ci' into chore/upgrade_0.9.32
saraswatpuneet Dec 5, 2022
bb39813
Merge branch 'main' into chore/upgrade_0.9.32
saraswatpuneet Dec 5, 2022
fab754f
include benchmarking updates for .9.30
saraswatpuneet Dec 5, 2022
a21e7e4
Merge branch 'chore/upgrade_0.9.32' of ssh://github.com/LibertyDSNP/f…
saraswatpuneet Dec 5, 2022
4ca7556
pin for integration tests
saraswatpuneet Dec 6, 2022
72d6d4f
update lock file
saraswatpuneet Dec 6, 2022
32be1e7
update weights and finalize .9.30
saraswatpuneet Dec 6, 2022
400d71e
Merge branch 'main' into chore/upgrade_0.9.32
saraswatpuneet Dec 6, 2022
ec35fa6
Merge branch 'main' into chore/upgrade_0.9.32
saraswatpuneet Dec 7, 2022
f5fc748
Merge branch 'main' into chore/upgrade_0.9.32
saraswatpuneet Dec 7, 2022
818b64d
try rebuild
saraswatpuneet Dec 7, 2022
bc612aa
Merge branch 'main' into chore/upgrade_0.9.32
saraswatpuneet Dec 7, 2022
c53eb9b
install protoc for docs steps
saraswatpuneet Dec 7, 2022
41d6f2a
Merge branch 'main' into chore/upgrade_0.9.32
saraswatpuneet Dec 7, 2022
b6ac80d
Merge branch 'main' into chore/upgrade_0.9.32
saraswatpuneet Dec 8, 2022
edf297a
add missing steps
saraswatpuneet Dec 8, 2022
6014fba
Merge branch 'main' into chore/upgrade_0.9.32
saraswatpuneet Dec 13, 2022
08a1d48
sync with main
saraswatpuneet Dec 13, 2022
ed504d7
Updating Benchmark Files
Dec 13, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/merge-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,10 @@ jobs:
steps:
- name: Check Out Repo
uses: actions/checkout@v3
- name: Install Required Packages
run: |
sudo apt-get update
sudo apt install -y protobuf-compiler
aramikm marked this conversation as resolved.
Show resolved Hide resolved
- name: Install Rust Toolchain
uses: actions-rs/toolchain@v1
with:
Expand Down Expand Up @@ -128,6 +132,10 @@ jobs:
echo "BIN_DIR=target/$BUILD_PROFILE" >> $GITHUB_ENV
echo "METADATA_FILENAME=encoded-metadata-${{env.NETWORK}}-${{github.ref_name}}.amd64.json" >> $GITHUB_ENV
echo "HOME=/home/ubuntu" >> $GITHUB_ENV
- name: Install Required Packages
run: |
sudo apt-get update
sudo apt install -y protobuf-compiler
- name: Check Out Repo
uses: actions/checkout@v3
# # XXX Keep this step as it lets us skip full binary builds during development/testing
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ jobs:
- name: Set Ubuntu Env Vars
run: |
echo "HOME=/home/ubuntu" >> $GITHUB_ENV
- name: Install Required Packages
run: |
sudo apt-get update
sudo apt install -y protobuf-compiler
- name: Check Out Repo
uses: actions/checkout@v3
# # XXX Keep this step as it lets us skip full binary builds during development/testing
Expand Down Expand Up @@ -136,6 +140,10 @@ jobs:
- name: Set Ubuntu Env Vars
run: |
echo "HOME=/home/ubuntu" >> $GITHUB_ENV
- name: Install Required Packages
run: |
sudo apt-get update
sudo apt install -y protobuf-compiler
- name: Check Out Repo
uses: actions/checkout@v3
- name: Install Rust Toolchain
Expand Down Expand Up @@ -206,6 +214,10 @@ jobs:
steps:
- name: Set Ubuntu Env Vars
run: echo "HOME=/home/ubuntu" >> $GITHUB_ENV
- name: Install Required Packages
run: |
sudo apt-get update
sudo apt install -y protobuf-compiler
- name: Check Out Repo
uses: actions/checkout@v3
- name: Install Rust Toolchain
Expand Down
24 changes: 24 additions & 0 deletions .github/workflows/verify-pr-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ jobs:
echo "BIN_DIR=target/$BUILD_PROFILE" >> $GITHUB_ENV
echo "BUILT_BIN_FILENAME=frequency" >> $GITHUB_ENV
echo "HOME=/home/ubuntu" >> $GITHUB_ENV
- name: Install Required Packages
run: |
sudo apt-get update
sudo apt install -y protobuf-compiler
- name: Check Out Repo
uses: actions/checkout@v3
# # XXX Keep this step as it lets us skip full binary builds during development/testing
Expand Down Expand Up @@ -142,6 +146,10 @@ jobs:
- name: Set Env Vars
run: |
echo "HOME=/home/ubuntu" >> $GITHUB_ENV
- name: Install Required Packages
run: |
sudo apt-get update
sudo apt install -y protobuf-compiler
- name: Check Out Repo
uses: actions/checkout@v3
- name: Install Rust Toolchain
Expand All @@ -167,6 +175,10 @@ jobs:
- name: Set Env Vars
run: |
echo "HOME=/home/ubuntu" >> $GITHUB_ENV
- name: Install Required Packages
run: |
sudo apt-get update
sudo apt install -y protobuf-compiler
- name: Check Out Repo
uses: actions/checkout@v3
- name: Install Rust Toolchain
Expand All @@ -192,6 +204,10 @@ jobs:
- name: Set Env Vars
run: |
echo "HOME=/home/ubuntu" >> $GITHUB_ENV
- name: Install Required Packages
run: |
sudo apt-get update
sudo apt install -y protobuf-compiler
- name: Check Out Repo
uses: actions/checkout@v3
- name: Install Rust Toolchain
Expand All @@ -212,6 +228,10 @@ jobs:
- name: Set Env Vars
run: |
echo "HOME=/home/ubuntu" >> $GITHUB_ENV
- name: Install Required Packages
run: |
sudo apt-get update
sudo apt install -y protobuf-compiler
- name: Check Out Repo
uses: actions/checkout@v3
- name: Install Rust Toolchain
Expand All @@ -236,6 +256,10 @@ jobs:
steps:
- name: Check Out Repo
uses: actions/checkout@v3
- name: Install Required Packages
run: |
sudo apt-get update
sudo apt install -y protobuf-compiler
saraswatpuneet marked this conversation as resolved.
Show resolved Hide resolved
- name: Install Rust Toolchain
uses: actions-rs/toolchain@v1
with:
Expand Down
Loading