Skip to content

Commit

Permalink
Test3, fully parameterized
Browse files Browse the repository at this point in the history
  • Loading branch information
OlafFilies committed Oct 4, 2024
1 parent 1125e5f commit 8bcf8e5
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/arduino_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ jobs:
echo "fqbn_example=$mfqbn" >> $GITHUB_OUTPUT
# Fetch the HIL information
efqbn=$(cat ./fqbn.yml | shyaml get-value hil.fqbn')
eexmp=$(cat ./fqbn.yml | shyaml get-value hil.example')
eexmp=`cat ./fqbn.yml | shyaml get-value hil.example`
efqbn=`cat ./fqbn.yml | shyaml get-value hil.fqbn`
echo "matrix_hil=$eexmp" >> $GITHUB_OUTPUT
echo "fqbn_hil=$efqbn" >> $GITHUB_OUTPUT
Expand Down Expand Up @@ -277,13 +277,6 @@ jobs:
# this example compiles each sample code for Arduino Uno, XMC2Go and XMC4700 boards
fqbn: ${{ fromJson(needs.setup.outputs.fqbn_hil) }}

# include additional information for each fqbn, in this case the platform name to install
# port_name: the name of the yaml structure in the board2port.yaml, there can be more than one hardware attached
# device: the device name the yaml structure in the board2port.yaml, there can be more than one hardware attached
# include:
# - fqbn: "Infineon:xmc:XMC1100_XMC2GO"
# port_name: "port_serial.0"
# device: "device.0"

# These are the steps which should run for each combination of fqbn and example code
steps:
Expand Down

0 comments on commit 8bcf8e5

Please sign in to comment.