trviy check
RN APK Build / build (push) Failing after 56m7s

This commit is contained in:
NishantRajputRN
2026-05-13 11:04:11 +05:30
parent 67fc69ee0e
commit 65ac716177
2 changed files with 17 additions and 20 deletions
+17 -5
View File
@@ -51,18 +51,30 @@ jobs:
. .
report_path="${GITHUB_WORKSPACE:-$(pwd)}/report.json" report_path="${GITHUB_WORKSPACE:-$(pwd)}/report.json"
echo "Runner host: $(hostname)" echo "Runner host: $(hostname)"
echo "report.json (on this runner, under job workspace): ${report_path}" echo "report.json (inside job container): ${report_path}"
ls -la report.json ls -la report.json
mkdir -p /home/azureuser/builds
cp -f report.json /home/azureuser/builds/trivy-report.json
echo "Persistent copy (survives after job workspace is removed): /home/azureuser/builds/trivy-report.json"
# - name: Upload Trivy report # Download this artifact from the Gitea run UI — file leaves the ephemeral job container without docker cp.
# - name: Upload Trivy report (artifact)
# uses: actions/upload-artifact@v3 # uses: actions/upload-artifact@v3
# with: # with:
# name: trivy-fs-report # name: trivy-fs-report
# path: report.json # path: report.json
# Optional: persist on the VM host. In act_runner config.yaml set (then restart runner):
# container:
# options: "-v /home/azureuser/gitea-reports:/gitea-reports"
# If your config uses valid_volumes, allow that host path (see act_runner config.example.yaml).
- name: Copy Trivy report to host bind mount (if configured)
run: |
if [ -d /gitea-reports ] && [ -w /gitea-reports ]; then
out="/gitea-reports/trivy-report-${GITHUB_RUN_ID:-$(date +%s)}.json"
cp -f report.json "${out}"
echo "Copied to bind mount (see host dir mapped to /gitea-reports): ${out}"
else
echo "Skip host copy: no /gitea-reports volume. Use artifact above, or add runner container.options volume — see workflow comment."
fi
# ---------------- SONARQUBE ---------------- # ---------------- SONARQUBE ----------------
# In Gitea: Settings → Secrets → SONAR_TOKEN (and optionally SONAR_URL). # In Gitea: Settings → Secrets → SONAR_TOKEN (and optionally SONAR_URL).
- name: SonarQube Scan - name: SonarQube Scan
-15
View File
@@ -1,17 +1,2 @@
console.log("trest") console.log("trest")
console.log("test2")
console.log("test3")
console.log("test4")
console.log("test5")
console.log("test6")
console.log("test7")
console.log("test8")
console.log("test9")
console.log("test10")
console.log("test11")
console.log("test12")
console.log("test13")
console.log("test14")
console.log("test15")
console.log("test16")