You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 1, 2023. It is now read-only.
# We specifically use the cygwin tar so that symlinks are saved/restored correctly on Windows.
682
+
# We set the installation records to the same mtime so that no rebuilds due to dependencies
683
+
# among these packages are triggered.
684
+
run: |
685
+
C:\\tools\\cygwin\\bin\\bash -l -c 'cd $(cygpath -u "$GITHUB_WORKSPACE") && ls -l sage-local-*.tar; for a in sage-local-${{ env.PREVIOUS_STAGES }}.tar; do echo Extracting $a; tar xf $a; done; (cd local/var/lib/sage/installed/ && touch .dummy && touch --reference=.dummy *); ls -l local local/var/lib/sage/installed/; src/bin/sage-rebase.sh local'
C:\\tools\\cygwin\\bin\\bash -l -x -c 'export PATH=/usr/local/bin:/usr/bin && cd $(cygpath -u "$GITHUB_WORKSPACE") && make -k -w V=0 $TARGETS'
692
+
- name: Prepare logs artifact
693
+
shell: bash
694
+
run: |
695
+
mkdir -p "artifacts/$LOGS_ARTIFACT_NAME"; for a in local/var/tmp/sage/build/*; do if [ -d $a ]; then tar -c --remove-files -f "artifacts/$LOGS_ARTIFACT_NAME/$(basename $a).tar" $a; fi; done; cp -r logs/* "artifacts/$LOGS_ARTIFACT_NAME"
696
+
if: always()
697
+
- uses: actions/upload-artifact@v2-preview
698
+
with:
699
+
path: artifacts
700
+
name: ${{ env.LOGS_ARTIFACT_NAME }}
701
+
if: always()
702
+
- name: Print out logs for immediate inspection
703
+
# The markup in the output is a GitHub Actions logging command
0 commit comments