Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Asteborg <xnorpx@outlook.com>2023-06-22 07:19:03 +0300
committerMarcus Asteborg <xnorpx@outlook.com>2023-06-22 23:58:33 +0300
commit26ab10d0c87f8cdd2472bd14da6a96e8191aaa6d (patch)
tree3edef79937f76ded5b0bfdd8d428acb07964894f
parentf12371bcee957a864437aef9927f0497a1e8cf28 (diff)
Remove submodule init
-rw-r--r--.github/workflows/autotools.yml2
-rw-r--r--.github/workflows/cmake.yml12
-rw-r--r--.github/workflows/dred.yml6
-rw-r--r--.github/workflows/repository.yml1
-rw-r--r--README1
-rwxr-xr-xautogen.sh1
6 files changed, 4 insertions, 19 deletions
diff --git a/.github/workflows/autotools.yml b/.github/workflows/autotools.yml
index f249857a..91d332bf 100644
--- a/.github/workflows/autotools.yml
+++ b/.github/workflows/autotools.yml
@@ -31,8 +31,6 @@ jobs:
}
steps:
- uses: actions/checkout@v3
- - name: Pull git submodules
- run: git submodule update --init --recursive
# No AutoMake on Mac so let's install it
- name: Install AutoConf, AutoMake and LibTool on MacOSX
if: matrix.config.os == 'macos-latest'
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml
index 78929739..ebdc68dc 100644
--- a/.github/workflows/cmake.yml
+++ b/.github/workflows/cmake.yml
@@ -10,9 +10,7 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- - name: Pull git submodules
- run: git submodule update --init --recursive
- - name: Submodule init and Download models
+ - name: Download models
run: ./autogen.sh
- name: Install CMake 3.1
run: |
@@ -40,9 +38,7 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- - name: Pull git submodules
- run: git submodule update --init --recursive
- - name: Submodule init and Download models
+ - name: Download models
run: ./autogen.sh
- name: Install MINGW
run: sudo apt-get install -y mingw-w64
@@ -228,15 +224,13 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- - name: Pull git submodules
- run: git submodule update --init --recursive
- name: Install AutoConf, AutoMake and LibTool # Needed for autogen.sh
if: matrix.config.os == 'macos-latest'
run: brew install autoconf automake libtool
- name: Download models Windows
if: contains(matrix.config.name, 'Windows')
run: .\autogen.bat
- - name: Submodule init and Download models
+ - name: Download models
if: contains(matrix.config.name, 'MacOSX') ||
contains(matrix.config.name, 'Linux') ||
contains(matrix.config.name, 'Android') ||
diff --git a/.github/workflows/dred.yml b/.github/workflows/dred.yml
index d22ab509..56e4c511 100644
--- a/.github/workflows/dred.yml
+++ b/.github/workflows/dred.yml
@@ -58,15 +58,13 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- - name: Pull git submodules
- run: git submodule update --init --recursive
- name: Install AutoConf, AutoMake and LibTool # Needed for autogen.sh
if: matrix.config.os == 'macos-latest'
run: brew install autoconf automake libtool
- name: Download models Windows
if: contains(matrix.config.name, 'Windows')
run: .\autogen.bat
- - name: Submodule init and Download models
+ - name: Download models
if: contains(matrix.config.name, 'MacOSX') ||
contains(matrix.config.name, 'Linux') ||
contains(matrix.config.name, 'Android') ||
@@ -110,8 +108,6 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- - name: Pull git submodules
- run: git submodule update --init --recursive
- name: Install AutoConf, AutoMake and LibTool on MacOSX
if: matrix.config.os == 'macos-latest'
run: brew install autoconf automake libtool
diff --git a/.github/workflows/repository.yml b/.github/workflows/repository.yml
index 6d4810c4..857621dd 100644
--- a/.github/workflows/repository.yml
+++ b/.github/workflows/repository.yml
@@ -10,7 +10,6 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- submodules: recursive
- name: Check Whitespaces
run: |
git diff-tree --check origin/opus-ng HEAD
diff --git a/README b/README
index 7a72a7c1..b24b4884 100644
--- a/README
+++ b/README
@@ -73,7 +73,6 @@ On Apple macOS, install Xcode and brew.sh, then in the Terminal enter:
2) Compiling the source
- % git submodule update --init
% ./autogen.sh
% ./configure
% make
diff --git a/autogen.sh b/autogen.sh
index fe558d39..f2f3841d 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -9,7 +9,6 @@ set -e
srcdir=`dirname $0`
test -n "$srcdir" && cd "$srcdir"
-git submodule update --init
(cd dnn; ./download_model.sh 2ddc476)
echo "Updating build configuration files, please wait...."