Skip to content

Commit 3ae39b5

Browse files
Vladimir Kotalahornace
authored andcommitted
checkout universal ctags via action
removes the need for installing git
1 parent 6e96592 commit 3ae39b5

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ jobs:
3030
path: ~/.m2
3131
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
3232
restore-keys: ${{ runner.os }}-m2
33+
- name: Checkout Universal ctags
34+
uses: actions/checkout@v2
35+
with:
36+
repository: universal-ctags/ctags
37+
path: ctags
3338
- name: Install pre-requisites (Unix)
3439
if: runner.os == 'Linux' || runner.os == 'macOS'
3540
run: ./dev/before_install

dev/before_install

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ if [[ "$RUNNER_OS" == "Linux" ]]; then
99

1010
sudo apt-get install -qq \
1111
cvs \
12-
git \
1312
mercurial \
1413
cssc \
1514
bzr \

dev/install-universal_ctags.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
#
44
# Clone Universal ctags Github repository and compile from source.
55
#
6-
git clone https://github.com/universal-ctags/ctags.git
76
cd ctags
87
./autogen.sh
98
./configure && make && make install

0 commit comments

Comments
 (0)