-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into feature/509-remove-…
…deprecated-version
- Loading branch information
Showing
7 changed files
with
59 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Celix development containers | ||
|
||
on: | ||
push: | ||
pull_request: | ||
schedule: | ||
- cron: '0 0 * * 0' # Weekly on Sunday at 00:00 UTC | ||
|
||
jobs: | ||
container-build-ubuntu: | ||
runs-on: ubuntu-22.04 | ||
timeout-minutes: 120 | ||
steps: | ||
- name: Checkout source code | ||
uses: actions/[email protected] | ||
- name: Build container image | ||
run: | | ||
cd $GITHUB_WORKSPACE/container/ | ||
./build-ubuntu-container.sh | ||
- name: Build Celix using container image | ||
run: | | ||
cd $GITHUB_WORKSPACE/container/ | ||
./run-ubuntu-container.sh "mkdir -p build && cd build && ../container/support-scripts/build-all.sh && make -j" | ||
- name: Run Celix tests using container image | ||
run: | | ||
cd $GITHUB_WORKSPACE/container/ | ||
./run-ubuntu-container.sh "cd build && ctest --output-on-failure" | ||
container-build-gitpod: | ||
runs-on: ubuntu-22.04 | ||
timeout-minutes: 120 | ||
steps: | ||
- name: Checkout source code | ||
uses: actions/[email protected] | ||
- name: Build container image | ||
run: | | ||
cd $GITHUB_WORKSPACE/container/ | ||
docker build -t apache/celix-dev:gitpod-latest -f Containerfile.gitpod . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,4 +27,3 @@ cmake -DCMAKE_BUILD_TYPE=${BUILD_TYPE} \ | |
-DRSA_SHM=ON \ | ||
-DRSA_REMOTE_SERVICE_ADMIN_SHM_V2=ON \ | ||
.. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters