Skip to content

Commit

Permalink
chore: updates dev staging data | NPG-000 (#686)
Browse files Browse the repository at this point in the history
# Description

Please include a summary of the changes and the related issue.
Please also include relevant motivation and context.
List any dependencies that are required for this change.

Fixes # (issue) _if applicable_

## Type of change

Please delete options that are not relevant.

- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] This change requires a documentation update

## How Has This Been Tested?

Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce.
Please also list any relevant details for your test configuration

- [ ] Test A
- [ ] Test B

**Test Configuration**: _if applicable_

- Firmware version:
- Hardware:
- Toolchain:
- SDK:

**List of new dependencies**: _if applicable_

Provide a list of newly added dependencies in this PR, with the
description of what are they doing and why do we need them.

- Crate A: description
- Crate B: description

## Checklist

- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- [ ] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective or that my
feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] Any dependent changes have been merged and published in downstream
modules

---------

Co-authored-by: kukkok3 <93382903+kukkok3@users.noreply.github.com>
  • Loading branch information
jmgilman and kukkok3 authored Mar 28, 2024
1 parent 2ea8094 commit d7048fb
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 21 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,8 @@ jobs:
aws_ecr_registry: 332405224602.dkr.ecr.eu-central-1.amazonaws.com
aws_role_arn: arn:aws:iam::332405224602:role/ci
aws_region: eu-central-1
deployment_images: |
cat-data-service
fragment-exporter
migrations
voting-node
publish_docs: false
secrets:
deployment_token: ${{ secrets.CI_BOT_TOKEN }}
dockerhub_token: ${{ secrets.DOCKERHUB_TOKEN }}
dockerhub_username: ${{ secrets.DOCKERHUB_USERNAME }}
earthly_runner_address: ${{ secrets.EARTHLY_SATELLITE_ADDRESS }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ jobs:
uses: taiki-e/install-action@nextest

- name: Install cargo-make
run: cargo install --force cargo-make
run: cargo install --force cargo-make --locked

- name: Install refinery
run: cargo install refinery_cli --version 0.8.7 --locked
Expand Down
26 changes: 13 additions & 13 deletions src/event-db/stage_data/dev/00001_fund100_event.sql
Original file line number Diff line number Diff line change
Expand Up @@ -29,22 +29,22 @@ INSERT INTO event (
100,
'Fund 100',
'Catalyst Testnet - Fund 100',
'2024-01-15 21:45:00', -- Registration Snapshot Time
'2024-01-15 22:15:00', -- Snapshot Start.
'2024-06-15 21:45:00', -- Registration Snapshot Time
'2024-06-15 22:15:00', -- Snapshot Start.
50000000, -- Voting Power Threshold
1, -- Max Voting Power PCT
NULL, -- Review Rewards
'2024-02-28 04:00:00', -- Start Time
'2023-12-30 18:00:00', -- End Time
'2024-02-28 04:00:00', -- Insight Sharing Start
'2024-02-28 04:00:00', -- Proposal Submission Start
'2024-02-28 04:00:00', -- Refine Proposals Start
'2024-02-28 04:00:00', -- Finalize Proposals Start
'2024-02-28 04:00:00', -- Proposal Assessment Start
'2024-02-28 04:00:00', -- Assessment QA Start
'2024-02-28 09:00:00', -- Voting Starts
'2024-03-13 13:00:00', -- Voting Ends
'2024-03-22 02:00:00', -- Tallying Ends
'2024-01-01 00:00:00', -- Start Time
'2024-12-31 00:00:00', -- End Time
'2024-07-28 04:00:00', -- Insight Sharing Start
'2024-07-28 04:00:00', -- Proposal Submission Start
'2024-07-28 04:00:00', -- Refine Proposals Start
'2024-07-28 04:00:00', -- Finalize Proposals Start
'2024-07-28 04:00:00', -- Proposal Assessment Start
'2024-07-28 04:00:00', -- Assessment QA Start
'2024-07-28 09:00:00', -- Voting Starts
'2024-08-13 13:00:00', -- Voting Ends
'2024-08-22 02:00:00', -- Tallying Ends
NULL, -- Block 0 Data
NULL, -- Block 0 Hash
1, -- Committee Size
Expand Down
2 changes: 1 addition & 1 deletion tests/wallet-automation/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ src:
COPY global-setup.ts .

# Define a test target that builds upon deps
test:
wallet-test:
FROM +src
RUN xvfb-run -a npx playwright test

0 comments on commit d7048fb

Please sign in to comment.