next-checks: check for rusted-firmware-a instead
Change-Id: I070219aa070ff4887a3e2168175d84a0844e1b0c
Signed-off-by: Tomás González <tomasagustin.gonzalezorlando@arm.com>
diff --git a/script/next-checks/next-checks-generic-tests.sh b/script/next-checks/next-checks-generic-tests.sh
index ab6167f..faf5802 100755
--- a/script/next-checks/next-checks-generic-tests.sh
+++ b/script/next-checks/next-checks-generic-tests.sh
@@ -29,7 +29,7 @@
cd "${REPO_NAME}"
-if [ "$REPO_NAME" == "trusted-firmware-a" ] && ["$IS_CONTINUOUS_INTEGRATION" == 1 ]; then
+if [ "$REPO_NAME" == "rusted-firmware-a" ] && ["$IS_CONTINUOUS_INTEGRATION" == 1 ]; then
git remote set-url origin ${REPO_SSH_URL}
git fetch origin
fi
@@ -45,7 +45,7 @@
# Run cargo test
-if [ "$REPO_NAME" == "trusted-firmware-a" ]; then
+if [ "$REPO_NAME" == "rusted-firmware-a" ]; then
# These tests are platform independent. However, we are specifying a platform:
# The fvp platform is expected to cover all platform independent features that can be tested
# with cargo test.
@@ -76,7 +76,7 @@
# Run cargo doc
-if [ "$REPO_NAME" != "trusted-firmware-a" ]; then
+if [ "$REPO_NAME" != "rusted-firmware-a" ]; then
echo "cargo doc --no-deps" >> "$LOG_TEST_FILENAME" 2>&1
RUSTDOCFLAGS="-D warnings" cargo doc --no-deps >> "$LOG_TEST_FILENAME" 2>&1