-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge release v1.1.2 into main (#256)
* Bump fastapi to 0.109.1 * Write container logs to file * Fix tls test module * Pin dependencies * Change error message for testrun already running (#262) * Change error message for testrun already running * Update testing scripts * Bump vite and @angular-devkit/build-angular in /modules/ui (#265) Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) to 4.5.2 and updates ancestor dependency [@angular-devkit/build-angular](https://github.com/angular/angular-cli). These dependencies need to be updated together. Updates `vite` from 4.5.1 to 4.5.2 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v4.5.2/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v4.5.2/packages/vite) Updates `@angular-devkit/build-angular` from 16.2.11 to 16.2.12 - [Release notes](https://github.com/angular/angular-cli/releases) - [Changelog](https://github.com/angular/angular-cli/blob/main/CHANGELOG.md) - [Commits](angular/angular-cli@16.2.11...16.2.12) --- updated-dependencies: - dependency-name: vite dependency-type: indirect - dependency-name: "@angular-devkit/build-angular" dependency-type: direct:development ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Update URL used by UI (#266) * formatting/pylint score * Bump version * Allow modification of API URL * Resolve container logs on separate thread to prevent blocking * Add appropriate headings (#258) * TLSv1.3 server bug fix * Enable save button when only one interface is available (#271) * Bump version --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Sofia Kurilova <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: jhughesbiot <[email protected]>
- Loading branch information
1 parent
8d18ac5
commit 3177827
Showing
40 changed files
with
976 additions
and
198 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 |
---|---|---|
|
@@ -13,7 +13,7 @@ jobs: | |
timeout-minutes: 20 | ||
steps: | ||
- name: Checkout source | ||
uses: actions/[email protected] | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
- name: Install dependencies | ||
shell: bash {0} | ||
run: cmd/prepare | ||
|
@@ -36,7 +36,7 @@ jobs: | |
timeout-minutes: 45 | ||
steps: | ||
- name: Checkout source | ||
uses: actions/[email protected] | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
- name: Install dependencies | ||
shell: bash {0} | ||
run: cmd/prepare | ||
|
@@ -53,7 +53,7 @@ jobs: | |
if: ${{ always() }} | ||
run: sudo tar --exclude-vcs -czf runtime.tgz /usr/local/testrun/runtime/ | ||
- name: Upload runtime results | ||
uses: actions/upload-artifact@v4 | ||
uses: actions/upload-artifact@694cdabd8bdb0f10b2cea11669e1bf5453eed0a6 # v4.2.0 | ||
if: ${{ always() }} | ||
with: | ||
if-no-files-found: error | ||
|
@@ -67,7 +67,7 @@ jobs: | |
timeout-minutes: 40 | ||
steps: | ||
- name: Checkout source | ||
uses: actions/[email protected] | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
- name: Install dependencies | ||
shell: bash {0} | ||
run: cmd/prepare | ||
|
@@ -85,7 +85,7 @@ jobs: | |
if: ${{ always() }} | ||
run: sudo tar --exclude-vcs -czf runtime.tgz /usr/local/testrun/runtime/ /usr/local/testrun/local/ | ||
- name: Upload runtime results | ||
uses: actions/upload-artifact@v4 | ||
uses: actions/upload-artifact@694cdabd8bdb0f10b2cea11669e1bf5453eed0a6 # v4.2.0 | ||
if: ${{ always() }} | ||
with: | ||
if-no-files-found: error | ||
|
@@ -99,7 +99,7 @@ jobs: | |
timeout-minutes: 5 | ||
steps: | ||
- name: Checkout source | ||
uses: actions/[email protected] | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
- name: Run pylint | ||
shell: bash {0} | ||
run: testing/pylint/test_pylint | ||
|
@@ -111,12 +111,12 @@ jobs: | |
timeout-minutes: 5 | ||
steps: | ||
- name: Checkout source | ||
uses: actions/[email protected] | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
- name: Package Testrun | ||
shell: bash {0} | ||
run: cmd/package | ||
- name: Archive package | ||
uses: actions/upload-artifact@v4 | ||
uses: actions/upload-artifact@694cdabd8bdb0f10b2cea11669e1bf5453eed0a6 # v4.2.0 | ||
with: | ||
name: testrun_installer | ||
path: testrun*.deb | ||
|
@@ -126,9 +126,9 @@ jobs: | |
name: UI | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
- name: Install Node | ||
uses: actions/setup-node@v4 | ||
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1 | ||
with: | ||
node-version: 18.10.0 | ||
- name: Install Chromium Browser | ||
|
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
Oops, something went wrong.