-
Notifications
You must be signed in to change notification settings - Fork 194
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into 'master'
Develop See merge request passbolt/passbolt_docker!214
- Loading branch information
Showing
5 changed files
with
67 additions
and
16 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,40 @@ | ||
name: Push & PR to the main branch | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
workflow_dispatch: | ||
|
||
jobs: | ||
lint: | ||
name: Passbolt CE Rootless-${{ matrix.rootless}} ${{ matrix.test_name }} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
test_name: | ||
[ | ||
"docker_image", | ||
"docker_runtime", | ||
"docker_runtime_no_envs", | ||
"docker_runtime_with_passbolt_php", | ||
] | ||
rootless: [true, false] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Set up Ruby ${{ matrix.ruby-version }} | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: "3.3.5" | ||
bundler-cache: true | ||
- env: | ||
PASSBOLT_COMPONENT: "stable" | ||
PASSBOLT_FLAVOUR: "ce" | ||
ROOTLESS: ${{ matrix.rootless }} | ||
TEST_NAME: ${{ matrix.test_name }} | ||
run: | | ||
bundle exec rake spec:$TEST_NAME |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Announcing the immediate availability of passbolt's docker image 4.1.0. | ||
|
||
This is a minor change that fixes a logging issue where 500 errors were not redirected to standard output. | ||
Also, it fixes issues on image testing and added the release notes automation on GitHub. |
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