Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
optee-client
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pkg
optee-client
Merge requests
!3
Release optee-client version 4.0.0-1+apertis1
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Release optee-client version 4.0.0-1+apertis1
proposed-updates/debian/trixie/v2025dev1
into
apertis/v2025dev1
Overview
0
Commits
5
Pipelines
3
Changes
44
Merged
Dylan Aïssi
requested to merge
proposed-updates/debian/trixie/v2025dev1
into
apertis/v2025dev1
1 year ago
Overview
0
Commits
5
Pipelines
3
Changes
44
Expand
Signed-off-by: Dylan Aïssi
dylan.aissi@collabora.com
0
0
Merge request reports
Compare
apertis/v2025dev1
version 1
8b61048b
1 year ago
apertis/v2025dev1 (base)
and
latest version
latest version
efdaf167
5 commits,
1 year ago
version 1
8b61048b
4 commits,
1 year ago
44 files
+
425
−
183
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
44
Search (e.g. *.vue) (Ctrl+P)
.github/workflows/ci.yml
0 → 100644
+
51
−
0
Options
name
:
CI
on
:
[
push
,
pull_request
]
permissions
:
contents
:
read
# to fetch code (actions/checkout)
jobs
:
debian
:
name
:
build (Debian)
runs-on
:
ubuntu-latest
container
:
jforissier/optee_client_ci_debian
steps
:
-
name
:
Checkout
uses
:
actions/checkout@v3
-
name
:
arm64 with make
run
:
make -j O=out-make-aarch64 CROSS_COMPILE=aarch64-linux-gnu-
-
name
:
armhf with make
run
:
make -j O=out-make-armhf CROSS_COMPILE=arm-linux-gnueabihf-
-
name
:
arm64 with cmake
run
:
|
set -e -v
mkdir out-cmake-aarch64 && cd out-cmake-aarch64
PKG_CONFIG=aarch64-linux-gnu-pkg-config cmake .. -DCMAKE_C_COMPILER=aarch64-linux-gnu-gcc
make -j
-
name
:
armhf with cmake
run
:
|
set -e -v
mkdir out-cmake-armhf && cd out-cmake-armhf
PKG_CONFIG=arm-linux-gnueabihf-pkg-config cmake .. -DCMAKE_C_COMPILER=arm-linux-gnueabihf-gcc
make -j
ubuntu
:
name
:
build (Ubuntu)
runs-on
:
ubuntu-latest
container
:
jforissier/optee_client_ci_ubuntu
steps
:
-
name
:
Checkout
uses
:
actions/checkout@v3
-
name
:
arm64 with make
run
:
make -j O=out-make-aarch64 CROSS_COMPILE=aarch64-linux-gnu-
-
name
:
armhf with make
run
:
make -j O=out-make-armhf CROSS_COMPILE=arm-linux-gnueabihf-
-
name
:
arm64 with cmake
run
:
|
set -e -v
mkdir out-cmake-aarch64 && cd out-cmake-aarch64
PKG_CONFIG=aarch64-linux-gnu-pkg-config cmake .. -DCMAKE_C_COMPILER=aarch64-linux-gnu-gcc
make -j
-
name
:
armhf with cmake
run
:
|
set -e -v
mkdir out-cmake-armhf && cd out-cmake-armhf
PKG_CONFIG=arm-linux-gnueabihf-pkg-config cmake .. -DCMAKE_C_COMPILER=arm-linux-gnueabihf-gcc
make -j
Loading