From bc4910a8c7aaaea1ada3a0268cf98d1ebeb01421 Mon Sep 17 00:00:00 2001 From: "Ben V. Brown" Date: Sun, 1 Nov 2020 12:17:50 +1100 Subject: [PATCH] Derp --- .github/workflows/push.yml | 135 ++++++++++++++++++------------------- 1 file changed, 65 insertions(+), 70 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 6d1a9f32..2c2dfdf9 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -1,103 +1,98 @@ name: CI PR -on: [pull_request] +on: [push] jobs: build_TS80: - runs-on: ubuntu-latest - + steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v2 - - name: chmod - run: chmod +x setup.sh && chmod +x workspace/TS100/build.sh + - name: chmod + run: chmod +x setup.sh && chmod +x workspace/TS100/build.sh - - name: setup - run: ./setup.sh + - name: setup + run: ./setup.sh - - name: build TS80 - run: cd workspace/TS100 && ./build.sh -m TS80 + - name: build TS80 + run: cd workspace/TS100 && ./build.sh -m TS80 - - name: Archive TS80 artifacts - uses: actions/upload-artifact@v2 - with: - name: TS80 - path: | - workspace/TS100/Hexfile/TS80_*.hex - workspace/TS100/Hexfile/TS80_*.bin - if-no-files-found: error + - name: Archive TS80 artifacts + uses: actions/upload-artifact@v2 + with: + name: TS80 + path: | + workspace/TS100/Hexfile/TS80_*.hex + workspace/TS100/Hexfile/TS80_*.bin + if-no-files-found: error build_TS80P: - runs-on: ubuntu-latest - + steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v2 - - name: chmod - run: chmod +x setup.sh && chmod +x workspace/TS100/build.sh + - name: chmod + run: chmod +x setup.sh && chmod +x workspace/TS100/build.sh - - name: setup - run: ./setup.sh + - name: setup + run: ./setup.sh - - name: build TS80P - run: cd workspace/TS100 && ./build.sh -m TS80P + - name: build TS80P + run: cd workspace/TS100 && ./build.sh -m TS80P - - name: Archive TS80P artifacts - uses: actions/upload-artifact@v2 - with: - name: TS80P - path: | - workspace/TS100/Hexfile/TS80P_*.hex - workspace/TS100/Hexfile/TS80P_*.bin - if-no-files-found: error + - name: Archive TS80P artifacts + uses: actions/upload-artifact@v2 + with: + name: TS80P + path: | + workspace/TS100/Hexfile/TS80P_*.hex + workspace/TS100/Hexfile/TS80P_*.bin + if-no-files-found: error build_TS100: - runs-on: ubuntu-latest - + steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v2 - - name: chmod - run: chmod +x setup.sh && chmod +x workspace/TS100/build.sh + - name: chmod + run: chmod +x setup.sh && chmod +x workspace/TS100/build.sh - - name: setup - run: ./setup.sh + - name: setup + run: ./setup.sh - - name: build TS100 - run: cd workspace/TS100 && ./build.sh -m TS100 + - name: build TS100 + run: cd workspace/TS100 && ./build.sh -m TS100 - - name: Archive TS100 artifacts - uses: actions/upload-artifact@v2 - with: - name: TS100 - path: | - workspace/TS100/Hexfile/TS100_*.hex - workspace/TS100/Hexfile/TS100_*.bin - if-no-files-found: error + - name: Archive TS100 artifacts + uses: actions/upload-artifact@v2 + with: + name: TS100 + path: | + workspace/TS100/Hexfile/TS100_*.hex + workspace/TS100/Hexfile/TS100_*.bin + if-no-files-found: error build_Pinecil: - runs-on: ubuntu-latest - + steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v2 - - name: chmod - run: chmod +x setup.sh && chmod +x workspace/TS100/build.sh + - name: chmod + run: chmod +x setup.sh && chmod +x workspace/TS100/build.sh - - name: setup - run: ./setup.sh + - name: setup + run: ./setup.sh - - name: build Pinecil - run: cd workspace/TS100 && ./build.sh -m Pinecil + - name: build Pinecil + run: cd workspace/TS100 && ./build.sh -m Pinecil - - name: Archive Pinecil artifacts - uses: actions/upload-artifact@v2 - with: - name: Pinecil - path: | - workspace/TS100/Hexfile/Pinecil_*.hex - workspace/TS100/Hexfile/Pinecil_*.bin - if-no-files-found: error - \ No newline at end of file + - name: Archive Pinecil artifacts + uses: actions/upload-artifact@v2 + with: + name: Pinecil + path: | + workspace/TS100/Hexfile/Pinecil_*.hex + workspace/TS100/Hexfile/Pinecil_*.bin + if-no-files-found: error