Skip to content

Commit a691416

Browse files
committed
Revert changes in integration action
1 parent 9af7dcc commit a691416

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

.github/workflows/integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ jobs:
3434
- name: System setup
3535
run: |
3636
sudo apt update
37-
sudo apt install -y make
38-
make compile-module
37+
sudo apt install -y stunnel make
38+
make system-setup
3939
- name: Cache dependencies
4040
uses: actions/cache@v2
4141
with:

Makefile

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -526,14 +526,8 @@ mvn-release:
526526
mvn release:prepare
527527
mvn release:perform -DskipTests
528528

529-
install-gcc:
530-
@if [ "$(shell uname)" = "Darwin" ]; then \
531-
brew install gcc; \
532-
else \
533-
sudo apt install -y gcc g++; \
534-
fi
535-
536-
system-setup: install-gcc
529+
system-setup:
530+
sudo apt install -y gcc g++
537531
[ ! -e redis-git ] && git clone https://github.com/redis/redis.git --branch unstable --single-branch redis-git || true
538532
$(MAKE) -C redis-git clean
539533
$(MAKE) -C redis-git

0 commit comments

Comments
 (0)