From 4cb21f3b681ec90fb276cb1efa2101d06c3fc753 Mon Sep 17 00:00:00 2001 From: rusefillc Date: Mon, 16 May 2022 16:44:56 -0400 Subject: [PATCH] Full create board CI #55 --- .github/workflows/test-magic.yaml | 24 +++++++++++++++++++ hellen-one | 2 +- step2_copy_alphax_2ch.sh => step2_copy.sh | 0 ...ate_alphax_2ch.sh => step3_create_board.sh | 0 4 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/test-magic.yaml rename step2_copy_alphax_2ch.sh => step2_copy.sh (100%) rename step3_create_alphax_2ch.sh => step3_create_board.sh (100%) diff --git a/.github/workflows/test-magic.yaml b/.github/workflows/test-magic.yaml new file mode 100644 index 0000000..de505a3 --- /dev/null +++ b/.github/workflows/test-magic.yaml @@ -0,0 +1,24 @@ +name: Check All + +on: [push, pull_request] + +jobs: + build-firmware: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + with: + submodules: recursive + + - name: Print Python Version + run: | + python3.8 --version + + - name: Step 2 Copy Gerbers + run: | + bash step2_copy.sh + + - name: Step 3 Create Board + run: | + bash step3_create_board.sh diff --git a/hellen-one b/hellen-one index 8024162..4926128 160000 --- a/hellen-one +++ b/hellen-one @@ -1 +1 @@ -Subproject commit 8024162d1d9963e9ef1200ac4bfcfc9189046d0e +Subproject commit 4926128c4ab4572346e1ebff62c4ce5ae4e94a95 diff --git a/step2_copy_alphax_2ch.sh b/step2_copy.sh similarity index 100% rename from step2_copy_alphax_2ch.sh rename to step2_copy.sh diff --git a/step3_create_alphax_2ch.sh b/step3_create_board.sh similarity index 100% rename from step3_create_alphax_2ch.sh rename to step3_create_board.sh