We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec4531f commit fba9bf7Copy full SHA for fba9bf7
.github/workflows/ci-meson.yml
@@ -81,7 +81,9 @@ jobs:
81
shell: bash -l {0}
82
run: |
83
# We don't install sage_setup, so don't try to test it
84
- rm -R ./src/sage_setup/
+ # If editable then deleting the directory will cause sage to detect rebuild, which will cause ninja to fail
85
+ # so we don't delete the directory in this case
86
+ ${{ matrix.editable && 'true' || 'rm -R ./src/sage_setup/' }}
87
./sage -t --all -p4
88
89
- name: Upload log
0 commit comments