Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
libspiro
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
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
Admin message
v2026dev1
entered Hard Code Freeze, changes will not be accepted •
schedule
Show more breadcrumbs
pkg
libspiro
Merge requests
!2
Update from debian/bookworm for apertis/v2024dev2
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Update from debian/bookworm for apertis/v2024dev2
proposed-updates/debian/bookworm/324f99e6
into
apertis/v2024dev2
Overview
0
Commits
5
Pipelines
2
Changes
54
Merged
Apertis CI robot
requested to merge
proposed-updates/debian/bookworm/324f99e6
into
apertis/v2024dev2
1 year ago
Overview
0
Commits
5
Pipelines
2
Changes
54
Expand
0
0
Merge request reports
Compare
apertis/v2024dev2
version 1
5ee4d661
1 year ago
apertis/v2024dev2 (base)
and
latest version
latest version
32e2ba70
5 commits,
1 year ago
version 1
5ee4d661
4 commits,
1 year ago
54 files
+
2080
−
43668
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
54
Search (e.g. *.vue) (Ctrl+P)
.github/workflows/main.yml
0 → 100644
+
75
−
0
Options
name
:
C
on
:
[
push
,
pull_request
]
jobs
:
linux
:
runs-on
:
ubuntu-latest
strategy
:
matrix
:
choiceL
:
[
--disable-silent-rules
,
--enable-verbose_lib
,
--enable-test_inputs
,
--enable-test-a-lot
]
steps
:
-
uses
:
actions/checkout@v2
-
name
:
Create configure
run
:
|
sudo apt-get update -y
sudo apt-get install autoconf automake libtool gcc
autoreconf -i
automake
-
name
:
Choose configure
run
:
./configure ${{ matrix.choiceL }}
-
name
:
Make library
run
:
make
-
name
:
Test library
run
:
make check
-
name
:
Test make distcheck
if
:
matrix.choiceL == '--disable-silent-rules'
run
:
make distcheck
macos
:
runs-on
:
macos-latest
strategy
:
matrix
:
choiceM
:
[
--disable-silent-rules
,
--enable-verbose_lib
,
--enable-test_inputs
,
--enable-test-a-lot
]
steps
:
-
uses
:
actions/checkout@v2
-
name
:
Create configure
run
:
|
brew install autoconf automake libtool gcc
autoreconf -i
automake
-
name
:
Choose configure
run
:
./configure ${{ matrix.choiceM }}
-
name
:
Make library
run
:
make
-
name
:
Test library
run
:
make check
windows
:
runs-on
:
windows-latest
strategy
:
matrix
:
include
:
[
{
msystem
:
MINGW64
,
toolchain
:
mingw-w64-x86_64-toolchain
},
{
msystem
:
MINGW32
,
toolchain
:
mingw-w64-i686-toolchain
},
{
msystem
:
UCRT64
,
toolchain
:
mingw-w64-ucrt-x86_64-toolchain
},
{
msystem
:
CLANG64
,
toolchain
:
mingw-w64-clang-x86_64-toolchain
},
]
name
:
${{ matrix.msystem }}
defaults
:
run
:
shell
:
msys2 {0}
steps
:
-
uses
:
actions/checkout@v2
-
uses
:
msys2/setup-msys2@v2
with
:
msystem
:
${{ matrix.msystem }}
update
:
true
install
:
autotools base-devel git ${{ matrix.toolchain }}
-
name
:
Create configure
run
:
|
autoreconf -i
automake
-
name
:
Choose configure
run
:
./configure
-
name
:
Make library
run
:
make
-
name
:
Test library
run
:
make check
Loading