diff options
| author | Mikkel Hjortshøj <me@thisdrunkdane.io> | 2021-04-30 22:27:09 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-30 22:27:09 +0200 |
| commit | 5ec82623ab7e30ed595e30e97e07e241225ceef8 (patch) | |
| tree | f4b0e196ce362fb0cadfae9ab9cf8d2918d60ded /.github | |
| parent | 47ff50a92d8273f01c08f8e8ff6fd37b6feaf677 (diff) | |
Remove downloading the LLVM binaries in nightly.yml
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/nightly.yml | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 82a5ecd7e..3d58a8fd8 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -10,15 +10,6 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v1 - - name: Install cURL - run: choco install curl - - name: Download and unpack LLVM bins - shell: cmd - run: | - cd bin - curl -sL https://github.com/odin-lang/Odin/releases/download/llvm-windows/llvm-binaries.zip --output llvm-binaries.zip - 7z x llvm-binaries.zip > nul - rm -f llvm-binaries.zip - name: build Odin shell: cmd run: | |