Skip to content

Commit 5dab8b0

Browse files
committed
ci: rework
1 parent 18e1305 commit 5dab8b0

22 files changed

+778
-319
lines changed

.github/workflows/aarch64_docker.yml

-39
This file was deleted.

.github/workflows/amd64_docker.yml

+21-13
Original file line numberDiff line numberDiff line change
@@ -4,34 +4,42 @@ name: amd64 Docker
44
on: [push, pull_request, workflow_dispatch]
55

66
jobs:
7-
Distros:
8-
runs-on: ubuntu-latest
7+
docker:
98
strategy:
109
matrix:
11-
distro: [alpine, archlinux, centos, debian, fedora, opensuse, ubuntu]
10+
distro: [
11+
almalinux,
12+
alpine,
13+
archlinux,
14+
debian,
15+
fedora,
16+
opensuse,
17+
rockylinux,
18+
ubuntu
19+
]
1220
fail-fast: false
13-
env:
14-
DISTRO: amd64_${{ matrix.distro }}
21+
name: amd64 • ${{ matrix.distro }}
22+
runs-on: ubuntu-latest
1523
steps:
1624
- uses: actions/checkout@v4
1725
- name: Check docker
1826
run: |
1927
docker info
2028
docker buildx ls
2129
- name: Build env image
22-
run: make --directory=ci ${DISTRO}_env
30+
run: make --directory=ci amd64_${{ matrix.distro }}_env
2331
- name: Build devel project
24-
run: make --directory=ci ${DISTRO}_devel
32+
run: make --directory=ci amd64_${{ matrix.distro }}_devel
2533
- name: Build project
26-
run: make --directory=ci ${DISTRO}_build
34+
run: make --directory=ci amd64_${{ matrix.distro }}_build
2735
- name: Test project
28-
run: make --directory=ci ${DISTRO}_test
36+
run: make --directory=ci amd64_${{ matrix.distro }}_test
2937

3038
- name: Build install env image
31-
run: make --directory=ci ${DISTRO}_install_env
39+
run: make --directory=ci amd64_${{ matrix.distro }}_install_env
3240
- name: Build install devel project
33-
run: make --directory=ci ${DISTRO}_install_devel
41+
run: make --directory=ci amd64_${{ matrix.distro }}_install_devel
3442
- name: Build install project
35-
run: make --directory=ci ${DISTRO}_install_build
43+
run: make --directory=ci amd64_${{ matrix.distro }}_install_build
3644
- name: Test install project
37-
run: make --directory=ci ${DISTRO}_install_test
45+
run: make --directory=ci amd64_${{ matrix.distro }}_install_test

.github/workflows/amd64_linux.yml

+59-43
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,69 @@
1+
# ref: https://github.com/actions/runner-images
12
name: amd64 Linux
23

34
on: [push, pull_request, workflow_dispatch]
45

6+
# Building using the github runner environement directly.
57
jobs:
6-
# Building using the github runner environement directly.
7-
linux:
8-
runs-on: ubuntu-latest
8+
native:
99
strategy:
1010
matrix:
11-
build: [
12-
["Unix Makefiles", "Release"],
13-
["Ninja", "Release"],
14-
["Ninja Multi-Config", "Release"]
11+
cmake: [
12+
{generator: "Unix Makefiles", config: "Release"},
13+
{generator: "Ninja", config: "Release"},
14+
{generator: "Ninja Multi-Config", config: "Release"},
1515
]
1616
fail-fast: false
17-
env:
18-
GENERATOR: ${{ matrix.build[0] }}
19-
BUILD_TYPE: ${{ matrix.build[1] }}
17+
name: Linux • ${{ matrix.cmake.generator }}
18+
runs-on: ubuntu-latest
2019
steps:
21-
- uses: actions/checkout@v4
22-
- name: Install Ninja
23-
run: |
24-
sudo apt-get update
25-
sudo apt-get install ninja-build
26-
- name: Uninstall preinstalled swig3.0
27-
run: |
28-
swig -version;
29-
sudo apt remove -y swig swig3.0
30-
- name: Install SWIG 4.0.2
31-
run: |
32-
wget "https://github.com/swig/swig/archive/refs/tags/v4.0.2.tar.gz" -O swig-4.0.2.tar.gz;
33-
tar xvf swig-4.0.2.tar.gz;
34-
rm swig-4.0.2.tar.gz;
35-
cd swig-4.0.2;
36-
./autogen.sh;
37-
./configure --prefix=/usr;
38-
make -j8;
39-
sudo make install;
40-
cd ..;
41-
rm -rf swig-4.0.2;
42-
- name: Check swig
43-
run: swig -version
44-
- name: Check cmake
45-
run: cmake --version
46-
- name: Configure
47-
run: cmake -S. -Bbuild -G "$GENERATOR" -DCMAKE_BUILD_TYPE="$BUILD_TYPE" -DCMAKE_INSTALL_PREFIX=install
48-
- name: Build
49-
run: cmake --build build --config "$BUILD_TYPE" --target all -v
50-
- name: Test
51-
run: CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --config "$BUILD_TYPE" --target test -v
52-
- name: Install
53-
run: cmake --build build --config "$BUILD_TYPE" --target install -v
20+
- uses: actions/checkout@v4
21+
- name: Install Ninja
22+
run: |
23+
sudo apt-get update
24+
sudo apt-get install ninja-build
25+
- name: Uninstall preinstalled swig3.0
26+
run: |
27+
swig -version;
28+
sudo apt remove -y swig swig3.0
29+
- name: Install SWIG 4.3.0
30+
run: |
31+
wget "https://github.com/swig/swig/archive/refs/tags/v4.3.0.tar.gz" -O swig-4.3.0.tar.gz;
32+
tar xvf swig-4.3.0.tar.gz;
33+
rm swig-4.3.0.tar.gz;
34+
cd swig-4.3.0;
35+
./autogen.sh;
36+
./configure --prefix=/usr;
37+
make -j8;
38+
sudo make install;
39+
cd ..;
40+
rm -rf swig-4.3.0;
41+
- name: Check swig
42+
run: swig -version
43+
- name: Check cmake
44+
run: cmake --version
45+
- name: Configure
46+
run: >
47+
cmake -S. -Bbuild
48+
-G "${{ matrix.cmake.generator }}"
49+
-DCMAKE_BUILD_TYPE="$BUILD_TYPE"
50+
-DCMAKE_INSTALL_PREFIX=install
51+
- name: Build
52+
run: >
53+
cmake --build build
54+
--config ${{ matrix.cmake.config }}
55+
--target all
56+
-v -j2
57+
- name: Test
58+
run: >
59+
CTEST_OUTPUT_ON_FAILURE=1
60+
cmake --build build
61+
--config ${{ matrix.cmake.config }}
62+
--target test
63+
-v
64+
- name: Install
65+
run: >
66+
cmake --build build
67+
--config ${{ matrix.cmake.config }}
68+
--target install
69+
-v

.github/workflows/amd64_macos.yml

+44-31
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,50 @@
1-
name: amd64 macOS
1+
# ref: https://github.com/actions/runner-images
2+
name: amd64 MacOS
23

34
on: [push, pull_request, workflow_dispatch]
45

6+
# Building using the github runner environement directly.
57
jobs:
6-
# Building using the github runner environement directly.
7-
macos:
8-
runs-on: macos-latest
8+
native:
99
strategy:
10-
matrix:
11-
build: [
12-
["Xcode", "Release", "ALL_BUILD", "RUN_TESTS", "install"],
13-
["Unix Makefiles", "Release", "all", "test", "install"]
14-
]
15-
fail-fast: false
16-
env:
17-
GENERATOR: ${{ matrix.build[0] }}
18-
BUILD_TYPE: ${{ matrix.build[1] }}
19-
BUILD_TARGET: ${{ matrix.build[2] }}
20-
TEST_TARGET: ${{ matrix.build[3] }}
21-
INSTALL_TARGET: ${{ matrix.build[4] }}
10+
matrix:
11+
cmake: [
12+
{generator: "Xcode", config: Release, build_target: ALL_BUILD, test_target: RUN_TESTS, install_target: install},
13+
{generator: "Unix Makefiles", config: Release, build_target: all, test_target: test, install_target: install},
14+
]
15+
fail-fast: false
16+
name: MacOS • ${{ matrix.cmake.generator }}
17+
runs-on: macos-13 # last macos intel based runner
2218
steps:
23-
- uses: actions/checkout@v4
24-
- name: Swig install
25-
run: brew install swig
26-
- name: Check swig
27-
run: swig -version
28-
- name: Check cmake
29-
run: cmake --version
30-
- name: Configure
31-
run: cmake -S. -Bbuild -G "$GENERATOR" -DCMAKE_BUILD_TYPE="$BUILD_TYPE" -DCMAKE_INSTALL_PREFIX=install
32-
- name: Build
33-
run: cmake --build build --config "$BUILD_TYPE" --target "$BUILD_TARGET" -v
34-
- name: Test
35-
run: CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --config "$BUILD_TYPE" --target "$TEST_TARGET" -v
36-
- name: Install
37-
run: cmake --build build --config "$BUILD_TYPE" --target "$INSTALL_TARGET" -v
19+
- uses: actions/checkout@v4
20+
- name: Swig install
21+
run: brew install swig
22+
- name: Check swig
23+
run: swig -version
24+
- name: Check cmake
25+
run: cmake --version
26+
- name: Configure
27+
run: >
28+
cmake -S. -Bbuild
29+
-G "${{ matrix.cmake.generator }}"
30+
-DCMAKE_BUILD_TYPE=${{ matrix.cmake.config }}
31+
-DCMAKE_INSTALL_PREFIX=install
32+
- name: Build
33+
run: >
34+
cmake --build build
35+
--config ${{ matrix.cmake.config }}
36+
--target ${{ matrix.cmake.build_target }}
37+
-v -j2
38+
- name: Test
39+
run: >
40+
CTEST_OUTPUT_ON_FAILURE=1
41+
cmake --build build
42+
--config ${{ matrix.cmake.config }}
43+
--target ${{ matrix.cmake.test_target }}
44+
-v
45+
- name: Install
46+
run: >
47+
cmake --build build
48+
--config ${{ matrix.cmake.config }}
49+
--target ${{ matrix.cmake.install_target }}
50+
-v

.github/workflows/amd64_windows.yml

+50-20
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,57 @@
1+
# ref: https://github.com/actions/runner-images
12
name: amd64 Windows
23

34
on: [push, pull_request, workflow_dispatch]
45

6+
# Building using the github runner environement directly.
57
jobs:
6-
# Building using the github runner environement directly.
7-
visual-studio:
8+
native:
9+
strategy:
10+
matrix:
11+
cmake: [
12+
{generator: "Visual Studio 17 2022", config: Release, build_target: ALL_BUILD, test_target: RUN_TESTS, install_target: INSTALL},
13+
{generator: "Visual Studio 17 2022", config: Debug, build_target: ALL_BUILD, test_target: RUN_TESTS, install_target: INSTALL},
14+
]
15+
fail-fast: false
16+
name: Windows • ${{ matrix.cmake.generator }} (${{ matrix.cmake.config }})
817
runs-on: windows-latest
18+
env:
19+
CTEST_OUTPUT_ON_FAILURE: 1
920
steps:
10-
- uses: actions/checkout@v4
11-
- name: Install SWIG 4.0.2
12-
run: |
13-
(New-Object System.Net.WebClient).DownloadFile("http://prdownloads.sourceforge.net/swig/swigwin-4.0.2.zip","swigwin-4.0.2.zip");
14-
Expand-Archive .\swigwin-4.0.2.zip .;
15-
echo "$((Get-Item .).FullName)/swigwin-4.0.2" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
16-
- name: Check swig
17-
run: swig -version
18-
- name: Check cmake
19-
run: cmake --version
20-
- name: Configure
21-
run: cmake -S. -Bbuild -G "Visual Studio 17 2022" -DCMAKE_CONFIGURATION_TYPES=Release -DCMAKE_INSTALL_PREFIX=install
22-
- name: Build
23-
run: cmake --build build --config Release --target ALL_BUILD -v
24-
- name: Test
25-
run: cmake --build build --config Release --target RUN_TESTS -v
26-
- name: Install
27-
run: cmake --build build --config Release --target INSTALL -v
21+
- uses: actions/checkout@v4
22+
- name: Install SWIG 4.3.0
23+
run: |
24+
(New-Object System.Net.WebClient).DownloadFile("http://prdownloads.sourceforge.net/swig/swigwin-4.3.0.zip","swigwin-4.3.0.zip");
25+
Expand-Archive .\swigwin-4.3.0.zip .;
26+
echo "$((Get-Item .).FullName)/swigwin-4.3.0" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
27+
- name: Check swig
28+
run: swig -version
29+
- name: Check cmake
30+
run: |
31+
cmake --version
32+
cmake -G || true
33+
- name: Configure
34+
run: >
35+
cmake -S. -Bbuild
36+
-G "${{ matrix.cmake.generator }}"
37+
-DCMAKE_CONFIGURATION_TYPES=${{ matrix.cmake.config }}
38+
-DBUILD_DEPS=ON
39+
-DCMAKE_INSTALL_PREFIX=install
40+
- name: Build
41+
run: >
42+
cmake --build build
43+
--config ${{ matrix.cmake.config }}
44+
--target ${{ matrix.cmake.build_target }}
45+
-v -j2
46+
- name: Test
47+
run: >
48+
cmake --build build
49+
--config ${{ matrix.cmake.config }}
50+
--target ${{ matrix.cmake.test_target }}
51+
-v
52+
- name: Install
53+
run: >
54+
cmake --build build
55+
--config ${{ matrix.cmake.config }}
56+
--target ${{ matrix.cmake.install_target }}
57+
-v

0 commit comments

Comments
 (0)