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
|
||||
|
||||
# Test installation script
|
||||
test-install:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
# test-install:
|
||||
# runs-on: ubuntu-latest
|
||||
# steps:
|
||||
# - uses: actions/checkout@master
|
||||
|
||||
- name: Check if user id 1000 exists
|
||||
run: |
|
||||
if [[ ! $(id -u 1000) -eq 1000 ]]; then
|
||||
echo "Creating user 1000"
|
||||
sudo useradd -u 1000 test
|
||||
fi
|
||||
id: check-user-id
|
||||
# - name: Check if user id 1000 exists
|
||||
# run: |
|
||||
# if [[ ! $(id -u 1000) -eq 1000 ]]; then
|
||||
# echo "Creating user 1000"
|
||||
# sudo useradd -u 1000 test
|
||||
# fi
|
||||
# id: check-user-id
|
||||
|
||||
- name: Run install script
|
||||
run: sudo ./scripts/start.sh --rc --ci
|
||||
# - name: Run install script
|
||||
# run: sudo ./scripts/start.sh --rc --ci
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue