[BOT] Update input file #404
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 apps on given SDK ref | |
on: | |
schedule: | |
- cron: '32 5 * * 1,2,3,4,5' | |
pull_request: | |
workflow_dispatch: | |
inputs: | |
sdk_ref: | |
type: string | |
required: false | |
default: 'master' | |
build_stax: | |
type: boolean | |
required: false | |
default: true | |
build_nanos: | |
type: boolean | |
required: false | |
default: true | |
build_nanox: | |
type: boolean | |
required: false | |
default: true | |
build_nanosp: | |
type: boolean | |
required: false | |
default: true | |
send_to_slack: | |
type: boolean | |
required: false | |
default: false | |
use_sha1_from_live: | |
type: boolean | |
required: false | |
default: false | |
provider: | |
type: string | |
required: false | |
default: "1" | |
device: | |
type: string | |
required: false | |
default: "nanos+" | |
version: | |
type: string | |
required: false | |
default: "1.1.0" | |
jobs: | |
setup-devices: | |
name: Setup devices | |
runs-on: ubuntu-latest | |
outputs: | |
names: ${{ steps.build-array.outputs.names }} | |
steps: | |
- name: Setup inputs | |
run: | | |
echo "build_stax=${{inputs.build_stax}}" >> $GITHUB_ENV | |
echo "build_nanos=${{inputs.build_nanos}}" >> $GITHUB_ENV | |
echo "build_nanox=${{inputs.build_nanox}}" >> $GITHUB_ENV | |
echo "build_nanosp=${{inputs.build_nanosp}}" >> $GITHUB_ENV | |
echo "sdk_ref=${{inputs.sdk_ref}}" >> $GITHUB_ENV | |
- name: Override for schedule event and PR | |
if: ${{ github.event_name == 'schedule' || github.event_name == 'pull_request' }} | |
run: | | |
echo "build_stax=true" >> $GITHUB_ENV | |
echo "build_nanos=true" >> $GITHUB_ENV | |
echo "build_nanox=true" >> $GITHUB_ENV | |
echo "build_nanosp=true" >> $GITHUB_ENV | |
echo "sdk_ref=master" >> $GITHUB_ENV | |
- name: Build matrix | |
id: build-array | |
run: | | |
if [[ ${{ env.build_nanos }} == "true" ]]; then | |
NAMES+=("nanos") | |
fi | |
if [[ ${{ env.build_nanox }} == "true" ]]; then | |
NAMES+=("nanox") | |
fi | |
if [[ ${{ env.build_nanosp }} == "true" ]]; then | |
NAMES+=("nanosp") | |
fi | |
if [[ ${{ env.build_stax }} == "true" ]]; then | |
NAMES+=("stax") | |
fi | |
devices="[\"$(echo ${NAMES[@]} | sed 's/ /","/g')\"]" | |
echo "names=$devices" >> $GITHUB_OUTPUT | |
split-input-file: | |
name: Split input file | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone Repo | |
uses: actions/checkout@v3 | |
- name: Split input into 10 files | |
run: | | |
python3 scripts/entrypoint.py split_input --input_file input_files/input.json | |
- name: Archive output file | |
uses: actions/upload-artifact@v3 | |
with: | |
name: input_1.json | |
path: input_1.json | |
- name: Archive output file | |
uses: actions/upload-artifact@v3 | |
with: | |
name: input_2.json | |
path: input_2.json | |
- name: Archive output file | |
uses: actions/upload-artifact@v3 | |
with: | |
name: input_3.json | |
path: input_3.json | |
- name: Archive output file | |
uses: actions/upload-artifact@v3 | |
with: | |
name: input_4.json | |
path: input_4.json | |
- name: Archive output file | |
uses: actions/upload-artifact@v3 | |
with: | |
name: input_5.json | |
path: input_5.json | |
- name: Archive output file | |
uses: actions/upload-artifact@v3 | |
with: | |
name: input_6.json | |
path: input_6.json | |
- name: Archive output file | |
uses: actions/upload-artifact@v3 | |
with: | |
name: input_7.json | |
path: input_7.json | |
- name: Archive output file | |
uses: actions/upload-artifact@v3 | |
with: | |
name: input_8.json | |
path: input_8.json | |
- name: Archive output file | |
uses: actions/upload-artifact@v3 | |
with: | |
name: input_9.json | |
path: input_9.json | |
- name: Archive output file | |
uses: actions/upload-artifact@v3 | |
with: | |
name: input_10.json | |
path: input_10.json | |
build-all: | |
name: Build for all targets | |
runs-on: ubuntu-latest | |
needs: [split-input-file, setup-devices] | |
container: | |
image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder:latest | |
strategy: | |
matrix: | |
index: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] | |
device: ${{ fromJSON(needs.setup-devices.outputs.names) }} | |
steps: | |
- name: Clone Repo | |
uses: actions/checkout@v3 | |
- name: Download split input file | |
uses: actions/download-artifact@v3 | |
with: | |
name: input_${{ matrix.index }}.json | |
- name: Setup repos | |
if: ${{ inputs.use_sha1_from_live }} | |
run: | | |
python3 scripts/entrypoint.py build_and_test --input_file input_${{ matrix.index }}.json --use_sha1_from_live --provider ${{ inputs.provider }} --device ${{ inputs.device }} --version ${{ inputs.version }} | |
- name: Setup repos | |
if: ${{ !inputs.use_sha1_from_live }} | |
run: | | |
python3 scripts/entrypoint.py build_and_test --input_file input_${{ matrix.index }}.json | |
- name: Launch build | |
run: | | |
if [ "${{ matrix.device }}" == "nanos" ]; then | |
python3 scripts/entrypoint.py build_and_test --sdk_ref API_LEVEL_LNS --input_file input_${{ matrix.index }}.json --build --${{ matrix.device }} --skip_setup --output_file build_${{ matrix.device }}_${{ matrix.index }}.json --logs_file log_${{ matrix.device }}_${{ matrix.index }}.txt | |
else | |
python3 scripts/entrypoint.py build_and_test --sdk_ref ${{ inputs.sdk_ref || 'master' }} --input_file input_${{ matrix.index }}.json --build --${{ matrix.device }} --skip_setup --output_file build_${{ matrix.device }}_${{ matrix.index }}.json --logs_file log_${{ matrix.device }}_${{ matrix.index }}.txt | |
fi | |
#- name: Push info to DB | |
# run: | | |
# python3 scripts/push_db.py --input_file build_output.json | |
- name: Archive output file | |
uses: actions/upload-artifact@v3 | |
with: | |
name: build_${{ matrix.device }}_${{ matrix.index }}.json | |
path: build_${{ matrix.device }}_${{ matrix.index }}.json | |
- name: Archive log file | |
uses: actions/upload-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_${{ matrix.device }}_${{ matrix.index }}.txt | |
path: log_${{ matrix.device }}_${{ matrix.index }}.txt | |
build-error_log: | |
name: Build error logs | |
runs-on: ubuntu-latest | |
needs: [build-all, setup-devices] | |
steps: | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_nanos_1.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_nanos_2.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_nanos_3.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_nanos_4.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_nanos_5.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_nanos_6.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_nanos_7.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_nanos_8.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_nanos_9.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_nanos_10.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_nanosp_1.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_nanosp_2.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_nanosp_3.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_nanosp_4.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_nanosp_5.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_nanosp_6.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_nanosp_7.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_nanosp_8.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_nanosp_9.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_nanosp_10.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_nanox_1.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_nanox_2.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_nanox_3.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_nanox_4.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_nanox_5.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_nanox_6.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_nanox_7.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_nanox_8.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_nanox_9.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_nanox_10.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_stax_1.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_stax_2.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_stax_3.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_stax_4.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_stax_5.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_stax_6.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_stax_7.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_stax_8.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_stax_9.txt | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: log_stax_10.txt | |
- name: Merge all | |
continue-on-error: true | |
run: | | |
cat log_* > error_log.txt | |
- name: Archive log error file | |
uses: actions/upload-artifact@v3 | |
continue-on-error: true | |
with: | |
name: error_log.txt | |
path: error_log.txt | |
info-devices: | |
name: Setup build infos by devices | |
runs-on: ubuntu-latest | |
needs: [build-all, setup-devices] | |
strategy: | |
matrix: | |
device: ${{ fromJSON(needs.setup-devices.outputs.names) }} | |
steps: | |
- name: Clone Repo | |
uses: actions/checkout@v3 | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
with: | |
name: build_${{ matrix.device }}_1.json | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
with: | |
name: build_${{ matrix.device }}_2.json | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
with: | |
name: build_${{ matrix.device }}_3.json | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
with: | |
name: build_${{ matrix.device }}_4.json | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
with: | |
name: build_${{ matrix.device }}_5.json | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
with: | |
name: build_${{ matrix.device }}_6.json | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
with: | |
name: build_${{ matrix.device }}_7.json | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
with: | |
name: build_${{ matrix.device }}_8.json | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
with: | |
name: build_${{ matrix.device }}_9.json | |
- name: Download files | |
uses: actions/download-artifact@v3 | |
with: | |
name: build_${{ matrix.device }}_10.json | |
- name: Merge output files | |
run: | | |
python3 scripts/entrypoint.py merge_output --input_pattern "build_"${{ matrix.device }}"_*.json" --output_file merged_build_${{ matrix.device }}.json --key "build" | |
- name: Archive output file | |
uses: actions/upload-artifact@v3 | |
with: | |
name: merged_build_${{ matrix.device }}.json | |
path: merged_build_${{ matrix.device }}.json | |
info-all: | |
name: Setup build infos | |
runs-on: ubuntu-latest | |
needs: [info-devices, setup-devices] | |
steps: | |
- name: Clone Repo | |
uses: actions/checkout@v3 | |
- name: Download LNS | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: merged_build_nanos.json | |
- name: Download LNSP | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: merged_build_nanosp.json | |
- name: Download LNX | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: merged_build_nanox.json | |
- name: Download stax | |
uses: actions/download-artifact@v3 | |
continue-on-error: true | |
with: | |
name: merged_build_stax.json | |
- name: Merge output files | |
run: | | |
python3 scripts/entrypoint.py merge_output --input_pattern "merged_build_*.json" --output_file full_build_output.json --key "build" | |
- name: Convert to markdown | |
run: | | |
python3 scripts/entrypoint.py convert_output --input_file full_build_output.json --output_file out.md --key build | |
cat out.md >> $GITHUB_STEP_SUMMARY | |
- name: Echo GHA url | |
run: echo "url"=${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} >> $GITHUB_ENV | |
- name: Convert to slack json | |
run: | | |
python3 scripts/entrypoint.py slack_output --input_file full_build_output.json --output_file slack.json --key build --devices ${{ needs.setup-devices.outputs.names }} --url ${{ env.url }} | |
- name: Send custom JSON data to Slack workflow | |
if: ${{ github.event_name == 'schedule' || inputs.send_to_slack == true }} | |
id: slack | |
uses: slackapi/[email protected] | |
with: | |
payload-file-path: slack.json | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
- name: Set job status | |
run: | | |
python3 scripts/entrypoint.py status_output --input_file full_build_output.json --key build | |
- name: Archive output file | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: full_build_output.json | |
path: full_build_output.json |