Skip to content

Commit

Permalink
Revert changes in integration action
Browse files Browse the repository at this point in the history
  • Loading branch information
ggivo committed Nov 11, 2024
1 parent 9af7dcc commit a691416
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ jobs:
- name: System setup
run: |
sudo apt update
sudo apt install -y make
make compile-module
sudo apt install -y stunnel make
make system-setup
- name: Cache dependencies
uses: actions/cache@v2
with:
Expand Down
10 changes: 2 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -526,14 +526,8 @@ mvn-release:
mvn release:prepare
mvn release:perform -DskipTests

install-gcc:
@if [ "$(shell uname)" = "Darwin" ]; then \
brew install gcc; \
else \
sudo apt install -y gcc g++; \
fi

system-setup: install-gcc
system-setup:
sudo apt install -y gcc g++
[ ! -e redis-git ] && git clone https://github.com/redis/redis.git --branch unstable --single-branch redis-git || true
$(MAKE) -C redis-git clean
$(MAKE) -C redis-git
Expand Down

0 comments on commit a691416

Please sign in to comment.