Skip to content

Commit

Permalink
ci: fix crud install
Browse files Browse the repository at this point in the history
Set valid package manager for fedora. Fix using apt for docker:
debian/ubuntu containers are sudoless.

Follows #264
  • Loading branch information
DifferentialOrange committed Dec 22, 2022
1 parent 5c4d06f commit 01e7161
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/packing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ jobs:
uses: actions/checkout@v3

- name: Setup Python and test running tools
run: dnf install -y python3 python3-libs python3-pip git make
run: dnf install -y python3 python3-libs python3-pip git make cmake unzip

- name: Remove connector source code
run: python3 .github/scripts/remove_source_code.py
Expand All @@ -336,7 +336,7 @@ jobs:
- name: Install the crud module for testing purposes
run: |
curl -L https://tarantool.io/release/2/installer.sh | bash
sudo apt install -y tt
sudo dnf install -y tt
tt rocks install crud
- name: Run tests
Expand Down Expand Up @@ -503,7 +503,7 @@ jobs:
- name: Install the crud module for testing purposes
run: |
curl -L https://tarantool.io/release/2/installer.sh | bash
sudo apt install -y tt
apt install -y tt
tt rocks install crud
- name: Run tests
Expand Down

0 comments on commit 01e7161

Please sign in to comment.