diff options
author | Son Ho | 2023-11-10 17:13:37 +0100 |
---|---|---|
committer | Son Ho | 2023-11-10 17:13:37 +0100 |
commit | 4fa2953684e6cb1763b05fd9d392477d04567aaf (patch) | |
tree | cd69eebb4bc987a89e66bf5e6c87b05862e6e7bb /.github/workflows | |
parent | 3be02779a3f0decd3e45e1faed6d83992cfb0f0b (diff) |
Update the ci.yml
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8c590a9d..328aaf22 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,13 +22,14 @@ jobs: lean: # Lean isn't supported by Nix, so we need to add extra steps runs-on: [ubuntu-latest] steps: - - run: wget -q https://raw.githubusercontent.com/leanprover-community/mathlib4/master/scripts/install_debian.sh && bash install_debian.sh ; rm -f install_debian.sh && source ~/.profile + - run: ls + #- run: wget -q https://raw.githubusercontent.com/leanprover-community/mathlib4/master/scripts/install_debian.sh && bash install_debian.sh ; rm -f install_debian.sh && source ~/.profile # Install curl - #- run: sudo apt update && sudo apt install curl + - run: sudo apt update && sudo apt install curl # Install Elan (https://leanprover-community.github.io/install/linux.html) - #- run: curl https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh -sSf -y | sh + #- run: curl https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh -sSf | sh + - run: curl https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh -sSf | bash -s -y #- run: sudo apt-get update && sudo apt-get install make # Verify - - run: ls - run: cd tests/lean && make #- run: cd tests/lean && lake build |