mirror of
https://github.com/OutlineFoundation/outline-server.git
synced 2026-08-04 14:37:34 +00:00
fix(server): make temp file names longer (#1464)
This commit is contained in:
parent
ac6be23b2e
commit
4537fddc75
2 changed files with 15 additions and 2 deletions
13
.github/workflows/build_and_test_debug.yml
vendored
13
.github/workflows/build_and_test_debug.yml
vendored
|
|
@ -59,6 +59,19 @@ jobs:
|
|||
- name: Shadowbox Integration Test
|
||||
run: npm run action shadowbox/integration_test/run
|
||||
|
||||
manual-install-script:
|
||||
name: Manual Install Script
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2.3.4
|
||||
|
||||
- name: Install Outline Server
|
||||
run: ./src/server_manager/install_scripts/install_server.sh --hostname localhost
|
||||
|
||||
- name: Test API
|
||||
run: 'curl --silent --fail --insecure $(grep "apiUrl" /opt/outline/access.txt | cut -d: -f 2-)/server'
|
||||
|
||||
metrics-server:
|
||||
name: Metrics Server
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
|
|
@ -58,8 +58,8 @@ readonly SENTRY_LOG_FILE=${SENTRY_LOG_FILE:-}
|
|||
# - STDERR is only used in the event of a fatal error
|
||||
# - Detailed logs are recorded to this FULL_LOG, which is preserved if an error occurred.
|
||||
# - The most recent error is stored in LAST_ERROR, which is never preserved.
|
||||
FULL_LOG="$(mktemp -t outline_logXXX)"
|
||||
LAST_ERROR="$(mktemp -t outline_last_errorXXX)"
|
||||
FULL_LOG="$(mktemp -t outline_logXXXXXXXXXX)"
|
||||
LAST_ERROR="$(mktemp -t outline_last_errorXXXXXXXXXX)"
|
||||
readonly FULL_LOG LAST_ERROR
|
||||
|
||||
function log_command() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue