Update action version & golang versions #90
Workflow file for this run
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: Build | |
on: | |
push: | |
# Don't run if only the .md -file is changed | |
paths-ignore: | |
- '**/*.md' | |
# This allows a subsequently queued workflow run to interrupt previous runs | |
concurrency: | |
group: edge-proxy-'${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | |
cancel-in-progress: true | |
jobs: | |
go-build-and-checks: | |
strategy: | |
matrix: | |
golang-ver: ["1.19", "1.20", "1.21", "1.22"] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set up golang | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.golang-ver }} | |
- name: Set GitHub access token via git config | |
run: | | |
git config --global url."https://${{ secrets.ACCESS_TOKEN }}@github.com/".insteadOf "git@github.com:" | |
git config --global url."https://${{ secrets.ACCESS_TOKEN }}@github".insteadOf "https://github" | |
- run: go version | |
- run: | | |
sudo apt-get update && \ | |
DEBIAN_FRONTEND="noninteractive" sudo apt-get install -y golint | |
- run: git clone git@github.com:PelionIoT/scripts-internal.git | |
- name: Build all | |
run: scripts-internal/golang/go_build_script.sh | |
- name: Run go vet | |
run: scripts-internal/golang/go_vet_script.sh --all | |
- name: Run go lint | |
run: "scripts-internal/golang/golint_script.sh --all" | |
- name: Run pysh-check | |
run: | | |
sudo apt install pycodestyle pydocstyle black | |
echo "." >scripts-internal/.nopyshcheck | |
echo "." >vendor/.nopyshcheck | |
scripts-internal/pysh-check/pysh-check.sh --workdir . | |
go-rpc-test: | |
strategy: | |
matrix: | |
# Can't run tests with 1.17 due to any requirement from ginkgo. | |
golang-ver: ["1.18", "1.19", "1.20"] | |
runs-on: ubuntu-latest | |
env: | |
CLOUD_API_KEY : ${{ secrets.EDGE_PROXY_CI_CLOUD_ACCESS__KEY }} | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Set up golang | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.golang-ver }} | |
- name: Set GitHub access token via git config | |
run: | | |
git config --global url."https://${{ secrets.ACCESS_TOKEN }}@github.com/".insteadOf "git@github.com:" | |
git config --global url."https://${{ secrets.ACCESS_TOKEN }}@github".insteadOf "https://github" | |
- run: go version | |
- name: Clone scripts-internal and mbed-edge repos | |
run: | | |
git clone git@github.com:PelionIoT/scripts-internal.git | |
git clone git@github.com:PelionIoT/mbed-edge.git | |
- name: Get pre-requisites | |
run: | | |
sudo apt-get update && \ | |
DEBIAN_FRONTEND="noninteractive" sudo apt-get -y install tzdata git curl \ | |
build-essential libc6-dev cmake | |
- name: Build edge-proxy | |
run: | | |
cp scripts-internal/client/credential_files/edge_proxy_ci_cred_file.c mbed-edge/config/mbed_cloud_dev_credentials.c | |
cd mbed-edge | |
git submodule update --init | |
mkdir build | |
cd build | |
cmake -DDEVELOPER_MODE=ON -DFIRMWARE_UPDATE=OFF .. | |
make | |
- name: Run go tests against mbed-edge | |
run: | | |
mbed-edge/build/bin/edge-core & | |
sleep 3 | |
scripts-internal/golang/go_test_script.sh --all | |
- name: Cleanup - kill edge-core and delete device | |
if: always() | |
run: | | |
devid=$(curl --no-progress-meter localhost:8080/status | jq -r '."endpoint-name"') | |
edgepid=$(ps -aux |grep bin/edge-core | awk '{print $2}' | head -n1) | |
if [[ -n "$edgepid" ]]; then | |
# Kill edge-core if pid is not empty | |
echo "Kill edge-core with pid: $edgepid" | |
kill $edgepid | |
else | |
echo "edge-core pid is empty" | |
fi | |
if [[ -n "$devid" ]]; then | |
echo "Delete $devid via Izuma V3 REST API" | |
scripts-internal/cloud/delete-device.sh $devid ${{ secrets.EDGE_PROXY_CI_CLOUD_ACCESS__KEY }} | |
else | |
echo "edge-core device ID is empty." | |
fi |