-
Notifications
You must be signed in to change notification settings - Fork 652
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GUACAMOLE-2012: Fix SSH connection to FIPS servers which only offer A…
…ES GCM
- Loading branch information
1 parent
af6a5bb
commit c9b341e
Showing
176 changed files
with
14,095 additions
and
3,571 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,29 @@ | ||
name: Pull request CI build | ||
|
||
# Run build for all pull requests | ||
on: | ||
pull_request: | ||
|
||
# Limit to only one build for a given PR source branch at a time, | ||
# cancelling any in-progress builds | ||
concurrency: | ||
group: guacamole-server-pr-${{ github.head_ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
|
||
docker_build: | ||
name: Run docker build | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
persist-credentials: false | ||
|
||
- name: Build Docker container | ||
shell: sh | ||
run: | | ||
docker build --pull --no-cache --force-rm . |
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
Oops, something went wrong.