Skip to content
Snippets Groups Projects
Commit de4266c0 authored by STEVAN Antoine's avatar STEVAN Antoine :crab:
Browse files

use the action from @hustcer in the GitHub CI (!186)

see the successful CI on GitHub: https://github.com/dragoon-rs/komodo/actions/runs/11950087413/job/33310881686
parent f711147d
No related branches found
No related tags found
1 merge request!186use the action from @hustcer in the GitHub CI
Pipeline #6771 passed with stages
in 3 minutes and 7 seconds
...@@ -22,9 +22,6 @@ jobs: ...@@ -22,9 +22,6 @@ jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
env:
NUSHELL_ARCH: 'x86_64-unknown-linux-musl'
NUSHELL_VERSION: '0.95.0'
needs: fmt needs: fmt
if: "!contains(github.event.head_commit.message, 'draft:') && !contains(github.event.head_commit.message, 'no-ci:')" if: "!contains(github.event.head_commit.message, 'draft:') && !contains(github.event.head_commit.message, 'no-ci:')"
steps: steps:
...@@ -34,12 +31,9 @@ jobs: ...@@ -34,12 +31,9 @@ jobs:
sudo apt update --yes sudo apt update --yes
sudo apt upgrade --yes sudo apt upgrade --yes
sudo apt install protobuf-compiler --yes sudo apt install protobuf-compiler --yes
- name: Install Nushell - uses: hustcer/setup-nu@v3
run: | with:
curl -fLo /tmp/nu.tar.gz "https://github.com/nushell/nushell/releases/download/$NUSHELL_VERSION/nu-$NUSHELL_VERSION-$NUSHELL_ARCH.tar.gz" version: "0.95"
tar xvf /tmp/nu.tar.gz --directory /tmp
cp "/tmp/nu-$NUSHELL_VERSION-$NUSHELL_ARCH/nu" /tmp/nu
echo "PATH=/tmp/:$PATH" >> $GITHUB_ENV
- name: Show configuration - name: Show configuration
run: make show run: make show
- name: Run tests - name: Run tests
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment