From ca8ea360245f9a5f611d8706d00b0958156e37aa Mon Sep 17 00:00:00 2001 From: Thomas Gotwig Date: Tue, 28 Nov 2023 22:27:55 +0100 Subject: [PATCH] test --- .github/workflows/rust.yml | 92 +++++++++++++++++++------------------- 1 file changed, 46 insertions(+), 46 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 8df3fd9..edc5f8b 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -14,52 +14,52 @@ jobs: uses: actions/checkout@v2 - name: 🕵️ Run linter run: cargo clippy - MacOS: - name: 🍎 MacOS - runs-on: macos-latest - steps: - - name: 🚀 actions/checkout@v2 - uses: actions/checkout@v2 - - - name: ⬇ Install yt-dlp - run: | - wget https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -O yt-dlp - chmod a+rx yt-dlp - echo "$(pwd)" >> $GITHUB_PATH - - - name: ⬇️ Install ffmpeg - run: | - wget https://evermeet.cx/ffmpeg/get/zip -qO ffmpeg.zip - unzip ffmpeg.zip - - - name: ⬇️ Install task - run: brew install go-task/tap/go-task - - - name: 🕵️ Run tests - run: task test - Ubuntu: - runs-on: ubuntu-latest - name: 🐧 Ubuntu - steps: - - name: 🚀 actions/checkout@v2 - uses: actions/checkout@v2 - - - name: ⬇️ Install yt-dlp - run: | - wget https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -O yt-dlp - chmod a+rx yt-dlp - echo "$(pwd)" >> $GITHUB_PATH - - - name: ⬇️ Install ffmpeg - run: sudo apt install -y ffmpeg - - - name: ⬇️ Install task - run: | - curl -sL "https://github.com/go-task/task/releases/download/v3.9.0/task_linux_amd64.tar.gz" | tar xz - sudo mv task /usr/local/bin - - - name: 🕵️ Run tests - run: task test + # MacOS: + # name: 🍎 MacOS + # runs-on: macos-latest + # steps: + # - name: 🚀 actions/checkout@v2 + # uses: actions/checkout@v2 + + # - name: ⬇ Install yt-dlp + # run: | + # wget https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -O yt-dlp + # chmod a+rx yt-dlp + # echo "$(pwd)" >> $GITHUB_PATH + + # - name: ⬇️ Install ffmpeg + # run: | + # wget https://evermeet.cx/ffmpeg/get/zip -qO ffmpeg.zip + # unzip ffmpeg.zip + + # - name: ⬇️ Install task + # run: brew install go-task/tap/go-task + + # - name: 🕵️ Run tests + # run: task test + # Ubuntu: + # runs-on: ubuntu-latest + # name: 🐧 Ubuntu + # steps: + # - name: 🚀 actions/checkout@v2 + # uses: actions/checkout@v2 + + # - name: ⬇️ Install yt-dlp + # run: | + # wget https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -O yt-dlp + # chmod a+rx yt-dlp + # echo "$(pwd)" >> $GITHUB_PATH + + # - name: ⬇️ Install ffmpeg + # run: sudo apt install -y ffmpeg + + # - name: ⬇️ Install task + # run: | + # curl -sL "https://github.com/go-task/task/releases/download/v3.9.0/task_linux_amd64.tar.gz" | tar xz + # sudo mv task /usr/local/bin + + # - name: 🕵️ Run tests + # run: task test Windows: runs-on: self-hosted name: 🏳️‍🌈 Windows