Skip to content

Commit

Permalink
fix typo and add unit-tests
Browse files Browse the repository at this point in the history
Signed-off-by: psbrar99 <[email protected]>
  • Loading branch information
psbrar99 committed Aug 14, 2023
1 parent c658958 commit ffd20c5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/e2e_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -376,6 +376,14 @@ jobs:
# if the tag contains fips we are doing a fips build
BUILD: ${{ contains(github.event.ref, 'fips') && 'fips' }}
REL_BRANCH_VER: ${{ steps.get_minor_ver.outputs.REL_BRANCH_VER }}

unit-test:
name: Unit-tests
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v2
- run: make -e T="-v -count=1" init racetest

eks-e2e-arm64-test:
name: eks-e2e-arm64-test
Expand Down
2 changes: 1 addition & 1 deletion tetrateci/test_1.18.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ fi

if [[ "${CLUSTER}" == "eks" ]]; then
echo "Applying patch for EKS...."
git apply --3way "${SCRIPTDIR}/patches/eks/eks.${ISTIO_MINOR_VER}.patch"
git apply --3way "${SCRIPTDIR}/patches/eks/eks_${ISTIO_MINOR_VER}.patch"
fi


Expand Down
2 changes: 1 addition & 1 deletion tetrateci/test_1.18_arm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ fi

if [[ "${CLUSTER}" == "eks" ]]; then
echo "Applying patch for EKS...."
git apply --3way "${SCRIPTDIR}/patches/eks/eks.${ISTIO_MINOR_VER}.patch"
git apply --3way "${SCRIPTDIR}/patches/eks/eks_${ISTIO_MINOR_VER}.patch"
fi

#go test -test.v -timeout 2h -tags=integ istio.io/istio/tests/integration/security --istio.test.select=-postsubmit,-flaky --istio.test.ci --istio.test.hub=${HUB} --istio.test.tag=${TAG}-distroless --istio.test.pullpolicy=IfNotPresent --istio.test.retries=1 && go test -test.v -timeout 2h -tags=integ istio.io/istio/tests/integration/security --istio.test.select=-postsubmit,-flaky --istio.test.ci --istio.test.hub=${HUB} --istio.test.tag=${TAG} --istio.test.pullpolicy=IfNotPresent
Expand Down

0 comments on commit ffd20c5

Please sign in to comment.