Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions .github/workflows/plugin_test_cc.yaml
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
on:
workflow_call:
inputs:
# The GitHub runner type on which this workflow should run.
runner:
description: "The GitHub runner type on which this workflow should run."
required: true
type: string
# The Please profile that should be loaded when testing the plugin.
plz_profile:
description: "The Please profile that should be loaded when testing the plugin."
required: true
type: string
# A space-delimited list of Apt packages to install on the runner before testing the plugin.
# Only meaningful when the runner is Ubuntu-based.
apt_packages:
description: "A space-delimited list of Apt packages to install on the runner before testing the plugin. Only meaningful when the runner is Ubuntu-based."
required: false
type: string
jobs:
Expand All @@ -30,7 +29,7 @@ jobs:
cc="$(grep -i '^CCTool =' .plzconfig.${{ inputs.plz_profile }} | sed -e 's/^CCTool = //')"
$cc -v -Wl,-v || true
- name: Run C/C++ tests
run: ./pleasew test -i test,cc --keep_going --log_file plz-out/log/test.log
run: ./pleasew test -e test,go --keep_going --log_file plz-out/log/test.log
- name: Archive logs
uses: actions/upload-artifact@v4
with:
Expand Down