-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into pay-2932-cleanup-apic…
…lient * origin/main: (25 commits) [QA-1268] Fix sentry upload (#8432) [QA-1253] Improve details tile layout (#8433) [QA-1251] Fix short lineup playback issues. (#8402) fix ddex playlists UI (#8435) [PAY-2965, PAY-2968, PAY-2963] Album upload copy fixes; remove 'hidden' option (#8428) [PAY-2786] Clean up skeletons for collection page (#8427) Fix dog ear pt 3 (#8420) Audius Protocol v0.6.100 QA-1260: change content title to not say track (#8436) [Web] Implement Remove Manager flows [Manager Mode ] [PAY-2827] (#8413) [Web] [Common] Accounts You Manage flows; hook up Accounts Managing You to API (#8301) [QA-1267] Fix blank android tip screen (#8430) [QA-1259] Restrict OTP spam (#8426) [PAY-2985] Fix squished art in purchase modal (#8423) [PAY-2960] Change library filter title to Premium (#8422) fix ddex playlist release_date parsing (#8421) Fix web-test by resolving circular import (#8418) solana relay ip utils (#8415) Revert "Fix dog ear on track page" (#8416) Misc $album fixes (#8393) ...
- Loading branch information
Showing
92 changed files
with
2,328 additions
and
682 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
integration-init: | ||
working_directory: ~/audius-protocol | ||
docker: | ||
- image: cimg/node:18.17 | ||
steps: | ||
- checkout | ||
- attach_workspace: | ||
at: ./ | ||
|
||
- create_concatenated_patch_file: | ||
filename: combined-patch-file.txt | ||
|
||
- restore_cache: | ||
keys: | ||
- cache-{{ checksum "package-lock.json" }}-{{ checksum "combined-patch-file.txt" }} | ||
|
||
- persist_to_workspace: | ||
root: ./ | ||
paths: | ||
- node_modules | ||
- packages/web/node_modules | ||
- packages/harmony/node_modules | ||
- packages/harmony/dist | ||
- packages/common/node_modules | ||
- packages/libs/node_modules | ||
- packages/libs/dist | ||
- packages/trpc-server/node_modules | ||
- packages/trpc-server/dist | ||
|
||
integration-test: | ||
machine: true | ||
resource_class: audiusproject/gcp-n2-standard-4 | ||
working_directory: ~/audius-protocol | ||
steps: | ||
- checkout | ||
- attach_workspace: | ||
at: ./ | ||
- run: | ||
name: setup | ||
command: AUDIUS_DEV=false bash ./dev-tools/setup.sh | ||
- run: | ||
name: audius-compose up | ||
command: . ~/.profile; audius-compose up --prod | ||
- run: | ||
name: audius-cmd test | ||
no_output_timeout: 15m | ||
command: | | ||
. ~/.profile; audius-cmd test | ||
- run: | ||
name: verify sdk types | ||
command: | | ||
cd ~/audius-protocol/packages/libs | ||
. ~/.profile | ||
audius-compose connect --nopass | ||
./scripts/check-generated-types.sh | ||
- run: sudo NEEDRESTART_MODE=l PLAYWRIGHT_BROWSERS_PATH=/home/circleci/.cache/ms-playwright npx playwright install --with-deps | ||
- run: cd packages/web && RUN_AGAINST_LOCAL_STACK=true npx playwright test | ||
- store_test_results: | ||
path: packages/web/report.xml | ||
when: always | ||
- run: | ||
command: cd packages/web && npx playwright merge-reports --reporter html ./blob-report | ||
when: always | ||
- store_artifacts: | ||
path: packages/web/playwright-report | ||
- run: | ||
name: cleanup | ||
no_output_timeout: 5m | ||
command: . ~/.profile; audius-compose down | ||
when: always | ||
- docker-prune |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
when: << pipeline.parameters.run-integration-workflow >> | ||
jobs: | ||
- test-audius-cmd: | ||
- integration-init: | ||
context: Vercel | ||
- integration-test: | ||
context: Vercel | ||
requires: | ||
- integration-init |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"version": "0.6.99", | ||
"version": "0.6.100", | ||
"service": "content-node" | ||
} |
Oops, something went wrong.