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

feat: new rafiki release pipeline and nodejs bump to v20 #2510

Merged
merged 23 commits into from
Apr 3, 2024
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
e7add38
ci: update workflows
sabineschaller Mar 1, 2024
3fc4b03
docs: update planning call -> community call
sabineschaller Mar 1, 2024
89aba2d
docs: improve wording
sabineschaller Mar 1, 2024
f247c26
feat(workflows): change nodejs version to latest lts
golobitch Mar 2, 2024
1810c67
feat(workflows): add new action for release and publish
golobitch Mar 2, 2024
364b446
bump(nodejs): v20
golobitch Mar 2, 2024
a41f771
feat(workflows): release publish action add prerequisite for docker b…
golobitch Mar 2, 2024
98303de
feat(workflows): update versions to work with node20
golobitch Mar 5, 2024
883bd39
fix(workflows): docker multiplatform build and add open api validator…
golobitch Mar 10, 2024
b6c47e3
fix(workflows): add codeql analysis back
golobitch Mar 10, 2024
fe2b645
bump(renovate): constraint nodejs to lower than v21
golobitch Mar 11, 2024
f65cf4d
fix(workflow): token introspection openapi path
golobitch Mar 15, 2024
b21342f
fix(workflow): backend openapi path
golobitch Mar 15, 2024
8ba73aa
fix(workflows): token introspection openapi specs path
golobitch Mar 23, 2024
1938154
fix(workflows): auth openapi specs path
golobitch Mar 23, 2024
f982abf
fix(workflows): backend openapi specs path
golobitch Mar 23, 2024
762ae43
feat(workflows): build multiple platforms only on release branch
golobitch Mar 23, 2024
66c3398
fix(workflows): specify new job for doing a docker build for specific…
golobitch Mar 28, 2024
0563b11
fix(workflows): use sha instead of refname
golobitch Mar 28, 2024
b02594f
fix(workflows): reorder mase steps
golobitch Mar 28, 2024
5c8044f
chore(workflows): remove unnecessary workflows
golobitch Mar 29, 2024
6649d92
fix(workflows): add missing integration test
golobitch Apr 2, 2024
aaf9d49
fix(workflows): add integration tests as prereqs for node build
golobitch Apr 3, 2024
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
23 changes: 23 additions & 0 deletions .github/workflows/node-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,29 @@ jobs:
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3

integration-test:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we should add this to the needs list for the node-build -> we should probably not run node-build if we fail integration tests.

CC @BlairCurrey

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yeah I'd say so too.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

runs-on: ubuntu-22.04
needs: prerequisite
timeout-minutes: 5
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup environment
uses: ./.github/workflows/rafiki/env-setup

- name: Setup hosts
run: |
echo "127.0.0.1 cloud-nine-wallet-test-backend" | sudo tee -a /etc/hosts
echo "127.0.0.1 cloud-nine-wallet-test-auth" | sudo tee -a /etc/hosts
echo "127.0.0.1 happy-life-bank-test-backend" | sudo tee -a /etc/hosts
echo "127.0.0.1 happy-life-bank-test-auth" | sudo tee -a /etc/hosts
- name: Build dependencies
run: pnpm --filter integration build:deps

- name: Run tests
run: pnpm --filter integration run-tests

node-build:
runs-on: ubuntu-latest
timeout-minutes: 5
Expand Down
Loading