JanneKiiskila PR checker #231
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: PR-check | |
run-name: ${{ github.actor }} PR checker | |
on: | |
push: | |
workflow_dispatch: | |
# This allows a subsequently queued workflow run to interrupt previous runs | |
concurrency: | |
group: pe-utils-'${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | |
cancel-in-progress: true | |
jobs: | |
run-shellcheck-and-scripts: | |
runs-on: [ "self-hosted", "client" ] | |
steps: | |
- uses: actions/checkout@v4 | |
- run: shellcheck --version | |
- name: Shellcheck fw-tools/edge-testnet | |
run: shellcheck fw-tools/edge-testnet | |
- name: Run edge-testnet | |
run: | | |
fw-tools/edge-testnet -e | |
- run: shellcheck edge-info/edge-info | |
- run: cat /etc/os-release | |
- run: edge-info/edge-info | |
run-identity-tool-tests: | |
runs-on: [ "self-hosted", "client" ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run identity-tools tests | |
run: | | |
cd identity-tools/test-cases | |
./test.sh | |
- name: Create one developer identity-tools | |
run: | | |
cd identity-tools/developer_identity | |
./create-dev-identity.sh -h | |
./create-dev-identity.sh -d -w CI-test | |
run-pysh-check: | |
runs-on: [ "self-hosted", "client" ] | |
env: | |
PA_TOKEN: ${{ secrets.ACCESS_TOKEN }} # IzumaBOT Access Token | |
steps: | |
- uses: actions/checkout@v4 | |
# Install pyshcheck tooling | |
- run: sudo apt install -y pycodestyle pydocstyle black | |
# git instead of rules to use access token | |
- run: git config --global url."https://${{ secrets.ACCESS_TOKEN }}@github.com/".insteadOf "[email protected]:" | |
- run: git config --global url."https://${{ secrets.ACCESS_TOKEN }}@github".insteadOf "https://github" | |
- run: git config --list | |
# Linux coreutils is already installed wc -command can be found. | |
- run: git clone [email protected]:PelionIoT/scripts-internal.git | |
#- run: git clone https://github.com/PelionIoT/scripts-internal.git | |
- run: echo "." >scripts-internal/.nopyshcheck | |
- run: .github/workflows/pysh-checker.sh ${{ github.event.repository.default_branch }} ${{ github.ref_name }} | |
run-edge-testnet: | |
runs-on: [ "self-hosted", "client" ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run edge-testnet | |
run: fw-tools/edge-testnet | |
- name: Run edge-testnet as fake snap | |
run: SNAP=snap fw-tools/edge-testnet | |
- name: Check -h works OK. | |
run: | | |
if ! fw-tools/edge-testnet -h; then | |
echo "Failed to run edge-testnet -h" | |
exit 1 | |
fi | |
- name: Check if it works with a custom domain | |
run: | | |
if ! fw-tools/edge-testnet --domain -pr-tester.pdm-sandbox.io -s --skip443 --skiptcp; then | |
echo "Failed to run edge-testnet -d example.com" | |
exit 1 | |
fi | |
- name: Check if it works with a custom domain & snap | |
run: | | |
if ! SNAP=snap fw-tools/edge-testnet --domain -pr-tester.pdm-sandbox.io -s --skip443 --skiptcp; then | |
echo "Failed to run edge-testnet -d example.com with SNAP env defined" | |
exit 1 | |
fi | |
- name: Check if it works with a custom domain & snap | |
run: | | |
fw-tools/edge-testnet --domain -pr-tester.pdm-sandbox.io -s --skiptcp > expect-some-fails.txt || true | |
grep "Some tests failed." expect-some-fails.txt | |
versions-check: | |
runs-on: [ "self-hosted", "client" ] | |
steps: | |
- uses: actions/checkout@v4 | |
- run: ./check_versions.sh | |
misspell: | |
runs-on: [ "self-hosted", "client" ] | |
steps: | |
- name: Run misspell (findings may not increase) | |
run: | | |
curl -L -o ./install-misspell.sh https://git.io/misspell | |
sh ./install-misspell.sh | |
bin/misspell -i mosquitto | |
run-edge-info: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
cd edge-info | |
./edge-info | |
out=$(./edge-info) | |
# If we find \u* anything in the output, | |
# likely a echo -e mistake | |
if echo "$out" | grep -q "\\\\u"; then | |
echo "The string contains \\u" | |
echo "Likely a echo -e mistake" | |
exit 1 | |
fi |