-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove backend-roundtrip job from workflows
Removed the backend-roundtrip job from both large-tests.yaml and build.yaml workflow files. This step reduces redundancy and streamlines the testing process by eliminating duplicative configurations.
- Loading branch information
1 parent
496f07c
commit 32fe974
Showing
2 changed files
with
1 addition
and
112 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 |
---|---|---|
|
@@ -131,59 +131,6 @@ jobs: | |
docker run --rm -v "$PWD:/mnt" --workdir "/mnt" "koalaman/shellcheck:v0.10.0" | ||
--color=always *.sh | ||
backend-roundtrip: | ||
needs: | ||
- cli | ||
- lib | ||
- web-app | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: .github/workflows/roundtrip | ||
timeout-minutes: 45 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20' | ||
cache: 'npm' | ||
cache-dependency-path: './web-app/package-lock.json' | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: opentdf-sdk-lib | ||
path: lib/ | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: opentdf-ctl | ||
path: cli/ | ||
- uses: yokawasa/[email protected] | ||
with: | ||
setup-tools: | | ||
kubectl | ||
helm | ||
tilt | ||
# This should be in sync with the minikube-deployed kube version below | ||
kubectl: '1.30.0' | ||
helm: '3.14.4' | ||
tilt: '0.33.13' | ||
- run: | | ||
kubectl version --client | ||
kustomize version | ||
tilt version | ||
- name: start minikube | ||
id: minikube | ||
uses: medyagh/setup-minikube@master | ||
with: | ||
minikube-version: 1.33.0 | ||
# This should be in sync with the setup-tools version above | ||
kubernetes-version: 1.30.0 | ||
- name: Run tilt ci | ||
env: | ||
TEST_SCRIPT: ./wait-and-test.sh backend | ||
OPENTDF_INGRESS_HOST_PORT: '5432' | ||
PLAYWRIGHT_TESTS_TO_RUN: roundtrip | ||
run: tilt ci | ||
|
||
platform-roundtrip: | ||
needs: | ||
- cli | ||
|
@@ -329,4 +276,4 @@ jobs: | |
- run: >- | ||
echo "- [Command Line Tool](https://www.npmjs.com/package/@opentdf/ctl/v/${{ needs.deliver-ghp.outputs.FULL_VERSION }})">>$GITHUB_STEP_SUMMARY | ||
- run: >- | ||
echo "- [unpkg](https://unpkg.com/browse/@opentdf/sdk@${{ needs.deliver-ghp.outputs.FULL_VERSION }})">>$GITHUB_STEP_SUMMARY | ||
echo "- [unpkg](https://unpkg.com/browse/@opentdf/sdk@${{ needs.deliver-ghp.outputs.FULL_VERSION }})">>$GITHUB_STEP_SUMMARY |
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 |
---|---|---|
|
@@ -88,61 +88,3 @@ jobs: | |
- run: npm run license-check | ||
- run: npm run lint | ||
- run: npm pack | ||
|
||
backend-roundtrip: | ||
needs: | ||
- cli | ||
- lib | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: .github/workflows/roundtrip | ||
timeout-minutes: 120 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20' | ||
cache: 'npm' | ||
cache-dependency-path: './web-app/package-lock.json' | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: opentdf-sdk-lib | ||
path: lib/ | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: opentdf-ctl | ||
path: cli | ||
- name: Git clone backend | ||
run: | | ||
git clone https://github.com/opentdf/opentdf.git | ||
- uses: yokawasa/[email protected] | ||
with: | ||
setup-tools: | | ||
kubectl | ||
helm | ||
tilt | ||
# This should be in sync with the minikube-deployed kube version below | ||
kubectl: '1.23.1' | ||
helm: '3.8.0' | ||
tilt: '0.26.2' | ||
- run: | | ||
kubectl version --client | ||
kustomize version | ||
tilt version | ||
- name: start minikube | ||
id: minikube | ||
uses: medyagh/setup-minikube@master | ||
with: | ||
minikube-version: 1.25.1 | ||
# This should be in sync with the setup-tools version above | ||
kubernetes-version: 1.23.1 | ||
- name: Run tilt ci | ||
env: | ||
#path relative to the quickstart Tiltfile | ||
TEST_SCRIPT: ../../wait-and-test.sh | ||
OPENTDF_INGRESS_HOST_PORT: '5432' | ||
OPENTDF_LOAD_FRONTEND: 'false' | ||
PLAYWRIGHT_TESTS_TO_RUN: huge roundtrip | ||
run: |- | ||
tilt ci --file opentdf/quickstart/Tiltfile |