diff --git a/.github/workflows/daily.yaml b/.github/workflows/daily.yaml index e14ea3ff6..13ebb9db2 100644 --- a/.github/workflows/daily.yaml +++ b/.github/workflows/daily.yaml @@ -60,67 +60,3 @@ jobs: git config --global --add safe.directory /__w/jtcores/jtcores git config --global --add safe.directory /__w/jtcores/jtcores/modules/jtframe/target/pocket ./setprj.sh jtseed 10 ${{ matrix.core }} --target mist --nodbg - - id: upload - uses: actions/upload-artifact@v3-node20 - with: - name: release - path: release - retention-days: 1 - - compile_cores20: - runs-on: ubuntu-latest - defaults: - run: - shell: bash - needs: - - list_cores - strategy: - fail-fast: false - matrix: - core: ${{ fromJSON(needs.list_cores.outputs.cores) }} - steps: - - uses: actions/checkout@v4 - with: - submodules: 'recursive' - token: ${{ secrets.PAT }} - - id: compile - run: | - # Compilation on Quartus 20.1 - docker run -e BETAKEY=${{ secrets.BETAKEY }} --network host -v `pwd`:/jtcores jotego/jtcore20 /jtcores/modules/jtframe/devops/xjtcore.sh ${{matrix.core}} mister pocket sidi sidi128 - - id: upload - uses: actions/upload-artifact@v3-node20 - with: - name: release - path: release - retention-days: 1 - - upload: - runs-on: ubuntu-latest - needs: [ compile_cores20 ] - if: ${{ always() }} # upload the results even if some core did not compile correctly - steps: - - uses: actions/checkout@v4 - - name: Download all artifacts - uses: actions/download-artifact@v2 - - name: Set zip file name - run: | - echo ARTIFACT_NAME=`git rev-parse --short HEAD`.zip >> "$GITHUB_ENV" - echo COMMIT_DATE=$(git show -s --format=%ci 2> /dev/null) >> "$GITHUB_ENV" - - name: Make zip file - run: | - ls -l release/* - echo ARTIFACT_NAME=$ARTIFACT_NAME - zip -r $ARTIFACT_NAME release - touch -m -d "$COMMIT_DATE" "$ARTIFACT_NAME" - ls -l $ARTIFACT_NAME - - name: Upload bundle - uses: bayssmekanique/action-simple-file-upload@v2 - with: - user: ${{ secrets.FTPUSER }} - password: ${{ secrets.FTPPASS }} - host: jotego.es - src: ${{ env.ARTIFACT_NAME }} - dest: ${{ env.ARTIFACT_NAME }} - - uses: geekyeggo/delete-artifact@v4 - with: - name: $ARTIFACT_NAME \ No newline at end of file