You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Set RUNNER_TRACKER_ID="" to prevent GitHub Actions from killing the Bazel server started during health check when "Cleaning up orphan processes" in the "Complete job" step. See https://github.com/actions/runner/issues/598.
# Run the test task from the dynamically generated config file
46
+
rosetta run --config .aspect/workflows/dynamic_config.yaml test
47
+
# Alternately you could escape from Aspect Workflows tasks and call bazel test directly
48
+
bazel test $(cat targets.out)
49
+
shell: bash
50
+
- name: Upload artifacts
51
+
# The `always()` condition makes this step run even if a previous step failed. Setting `continue-on-error: true` on previous steps isn't ideal as the UI will flag them as having passed even if they failed.
0 commit comments