forked from emsec/ChameleonMini
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into DESFire-AuthISO-Patch
- Loading branch information
Showing
205 changed files
with
3,533 additions
and
4,254 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: DESFire-only Firmware Build (master Branch Push, Pre-release with Artifacts) | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Make a firmware build folder | ||
run: mkdir FirmwareBuild | ||
- name: Print Kernel Ver | ||
run: uname -a | ||
- name: Update APT | ||
run: sudo apt-get update -yqq | ||
- name: Install AVR GCC Suite | ||
run: sudo apt-get install -yqq make autoconf build-essential ca-certificates pkg-config libreadline-dev gcc-avr binutils-avr gdb-avr avr-libc avrdude | ||
- name: Make DESFire Firmware | ||
run: make desfire | ||
working-directory: Firmware/Chameleon-Mini/ | ||
- name: Move hex file to FirmwareBuild | ||
run: mv Chameleon-Mini-DESFire.hex $GITHUB_WORKSPACE/FirmwareBuild/ | ||
working-directory: Firmware/Chameleon-Mini/ | ||
- name: Move eep file to FirmwareBuild | ||
run: mv Chameleon-Mini-DESFire.eep $GITHUB_WORKSPACE/FirmwareBuild/ | ||
working-directory: Firmware/Chameleon-Mini/ | ||
- name: Upload Build Artifact to Action | ||
uses: actions/upload-artifact@v2.1.4 | ||
with: | ||
name: "ChameleonBuild" | ||
path: "FirmwareBuild/**" | ||
- name: Create a Pre-release | ||
uses: actions/create-release@v1.1.3 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: "${{ format('Build-DESFire-{0}', github.sha) }}" | ||
release_name: DESFire-only Firmware Build ${{ github.sha }} | ||
body: Built DESFire at commit ${{ github.sha }} from ${{ github.actor }} | ||
draft: false | ||
prerelease: true | ||
- name: Upload Pre-release Artifacts | ||
uses: linuxgemini/github-upload-release-artifacts-action@master | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
created_tag: "${{ format('Build-DESFire-{0}', github.sha) }}" | ||
args: "FirmwareBuild/" |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
Oops, something went wrong.