Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Martin Storsjö
x264
Commits
0d754ec3
Commit
0d754ec3
authored
Oct 26, 2020
by
Martin Storsjö
Committed by
Anton Mitrofanov
Jan 07, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gitlab-ci: Add build-only configurations with llvm-mingw targeting armv7/aarch64
parent
6bc7fe4f
Pipeline
#55415
passed with stages
in 7 minutes and 48 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
0 deletions
+29
-0
.gitlab-ci.yml
.gitlab-ci.yml
+29
-0
No files found.
.gitlab-ci.yml
View file @
0d754ec3
...
...
@@ -23,6 +23,16 @@ stages:
_PLATFORMSUFFIX
:
"
.exe"
_WRAPPER
:
"
wine64"
.variables-win-armv7
:
&variables-win-armv7
_TRIPLET
:
"
armv7-w64-mingw32"
_PLATFORMSUFFIX
:
"
.exe"
_WRAPPER
:
"
"
.variables-win-aarch64
:
&variables-win-aarch64
_TRIPLET
:
"
aarch64-w64-mingw32"
_PLATFORMSUFFIX
:
"
.exe"
_WRAPPER
:
"
"
.variables-macos
:
&variables-macos
_TRIPLET
:
"
x86_64-apple-darwin18"
_PLATFORMSUFFIX
:
"
"
...
...
@@ -99,6 +109,25 @@ build-win64:
extends
:
.build-win
variables
:
*variables-win64
.build-llvm-mingw
:
extends
:
.build
image
:
registry.videolan.org/vlc-debian-llvm-mingw:20200703084018
tags
:
-
docker
-
amd64
script
:
|
set -x
PKGCONFIG=pkg-config ./configure --host="${_TRIPLET}" --cross-prefix="${_TRIPLET}-" --enable-pic --enable-strip
make -j$(getconf _NPROCESSORS_ONLN) x264 checkasm
build-llvm-mingw-armv7
:
extends
:
.build-llvm-mingw
variables
:
*variables-win-armv7
build-llvm-mingw-aarch64
:
extends
:
.build-llvm-mingw
variables
:
*variables-win-aarch64
build-macos
:
extends
:
.build
tags
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment