Jvollmer init #43
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: run-tests | |
on: | |
pull_request: | |
branches: | |
- 'main' | |
# The cancel-in-progress concurrency option can only be specified at the workflow or job level, and job-level concurrency is ineffective when dealing with queued workflows. | |
# Given that we don't want to cancel the workflow while fetching mbed-os libraries or flashing, the cancel-in-progress option is set to false to prevent canceling the | |
# workflow at these times. However, this still prevents multiple identical queued workflows from piling up. | |
concurrency: | |
group: ${{ github.event_name }}.${{ github.head_ref }}.${{ github.workflow }} | |
cancel-in-progress: false | |
jobs: | |
setup: | |
runs-on: | |
- self-hosted | |
outputs: | |
target: ${{ steps.get-dev-info.outputs.device }} | |
ser_port: ${{ steps.get-dev-info.outputs.serial }} | |
flash_mntpt: ${{ steps.get-dev-info.outputs.mountpoint }} | |
steps: | |
- name: Get Repo | |
uses: actions/checkout@v3 | |
with: | |
# Don't run `git clean -ffdx` and `git reset --hard HEAD` in this step to avoid removing `mbed-os/`. | |
# These will be run post checkout in the following step | |
clean: false | |
# Clean up any changes in the working index, including untracked files aside from mbed-os/ | |
- name: Post Checkout Cleanup | |
run: | | |
git clean -ffdxe mbed-os | |
git reset --hard HEAD | |
# Gets the two most recent states of the repo on the runner. If any *.lib files changed between the two commits, fetch the libraries | |
- name: Fetch Libraries If Needed | |
run: | | |
commits=$(git reflog -1 | grep -Po "(?<=moving from )\S+|(?<= to )\S+$") | |
if [[ -n "$(git diff --name-only $commits *.lib)" ]]; then | |
echo "Needed to fetch mbed-os libraries :finnadie:" >> $GITHUB_STEP_SUMMARY | |
if [[ -d mbed-os ]]; then | |
echo "Removing mbed-os before fetching libraries" | |
rm -rf mbed-os | |
fi | |
# Fetch libraries | |
mbed-tools deploy | |
fi | |
# Gets device info using `mbed-tools detect` and sets output needed for compiling and flashing | |
# NOTE: Expecting '/mnt/$USER/' to be the base path for the mount point, as specified in the runner's ldm (https://github.com/LemonBoy/ldm) configuration, | |
# despite /media/[$USER/] typically being the base path for removable media | |
- name: Generate Macros and Get Device Info | |
id: get-dev-info | |
run: | | |
# Generate macro definitions in CMakeLists.txt and store the target from the setup configuration file | |
device=$(./parseConfigs.py) | |
git diff | |
# Get information pertaining to the device found above | |
detect_out=$(mbed-tools detect | grep "$device") | |
serial=$(echo "$detect_out" | grep -oE "/dev/tty\\S*") | |
mountpoint=$(echo "$detect_out" | grep -oE "/mnt/$USER/\\S*") | |
if [[ -z "$serial" || -z "$mountpoint" ]]; then | |
echo "Failed to detect serial port and/or mount point matching '/dev/tty*' and '/mnt/$USER/*', respectively, for target '$device' :hurtrealbad:" >> $GITHUB_STEP_SUMMARY | |
exit 1 | |
fi | |
echo "device=$device" >> "$GITHUB_OUTPUT" | |
echo "serial=$serial" >> "$GITHUB_OUTPUT" | |
echo "mountpoint=$mountpoint" >> "$GITHUB_OUTPUT" | |
echo "Found target '$device' connected to serial port '$serial' with storage mounted to '$mountpoint' :relieved:" >> $GITHUB_STEP_SUMMARY | |
compile-and-flash: | |
needs: setup | |
env: | |
BUILD_PROFILE: develop | |
TOOLCHAIN: GCC_ARM | |
runs-on: | |
- self-hosted | |
steps: | |
- name: Compile and Flash | |
if: false # TODO Remove | |
run: | | |
mbed-tools configure -t ${{ env.TOOLCHAIN }} -m ${{ needs.setup.outputs.target }} | |
cmake -S . -B cmake_build/${{ needs.setup.outputs.target }}/${{ env.BUILD_PROFILE }}/${{ env.TOOLCHAIN }} -GNinja | |
cmake --build cmake_build/${{ needs.setup.outputs.target }}/${{ env.BUILD_PROFILE }}/${{ env.TOOLCHAIN }} | |
cp cmake_build/${{ needs.setup.outputs.target }}/${{ env.BUILD_PROFILE }}/${{ env.TOOLCHAIN }}/embedded-mbed.bin ${{ needs.setup.outputs.flash_mntpt }} | |
echo "Successfully flashed to ${{ needs.setup.outputs.target }} :v:" >> $GITHUB_STEP_SUMMARY | |