test pipeline #56
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: Test_CI_Branch | |
on: | |
push: | |
branches: Divya-test | |
schedule: ## Schedule the job to run daily. | |
- cron: "0 13 * 10 0-6" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: | |
git config --global user.email "[email protected]" && git config --global user.name "Divya-563" | |
- name: Configure | |
run: make raspberrypi3_wpe_ml_defconfig | |
- name: Compile | |
run: make | |
- name: Get Time | |
id: time | |
uses: nanzm/[email protected] | |
with: | |
format: 'YYYY-MM-DD-HH-mm-ss' | |
- name: Upload | |
uses: actions/upload-artifact@v3 | |
with: | |
name: images_${{ steps.time.outputs.time }} | |
path: output/images/ | |