Deactivate long-running workflow
This commit is contained in:
parent
d092a161f9
commit
635ac3fd60
1 changed files with 13 additions and 13 deletions
26
.github/workflows/release-candidate.yml
vendored
26
.github/workflows/release-candidate.yml
vendored
|
@ -79,20 +79,20 @@ jobs:
|
||||||
cache-to: type=inline
|
cache-to: type=inline
|
||||||
|
|
||||||
# Test installation script
|
# Test installation script
|
||||||
test-install:
|
# test-install:
|
||||||
runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
steps:
|
# steps:
|
||||||
- uses: actions/checkout@master
|
# - uses: actions/checkout@master
|
||||||
|
|
||||||
- name: Check if user id 1000 exists
|
# - name: Check if user id 1000 exists
|
||||||
run: |
|
# run: |
|
||||||
if [[ ! $(id -u 1000) -eq 1000 ]]; then
|
# if [[ ! $(id -u 1000) -eq 1000 ]]; then
|
||||||
echo "Creating user 1000"
|
# echo "Creating user 1000"
|
||||||
sudo useradd -u 1000 test
|
# sudo useradd -u 1000 test
|
||||||
fi
|
# fi
|
||||||
id: check-user-id
|
# id: check-user-id
|
||||||
|
|
||||||
- name: Run install script
|
# - name: Run install script
|
||||||
run: sudo ./scripts/start.sh --rc --ci
|
# run: sudo ./scripts/start.sh --rc --ci
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue