forked from mirrors/thatmattlove-hyperglass
ci fixes
This commit is contained in:
parent
074ca5dbb8
commit
49a1a3d849
4 changed files with 9 additions and 11 deletions
4
.github/workflows/backend.yml
vendored
4
.github/workflows/backend.yml
vendored
|
|
@ -11,8 +11,8 @@ jobs:
|
|||
redis-version: [5, 6]
|
||||
poetry-version: [1.1.4]
|
||||
python-version: [3.6, 3.8]
|
||||
os: [ubuntu-latest]
|
||||
runs-on: ubuntu-latest
|
||||
os: [ubuntu-20.04]
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
steps:
|
||||
- name: Git Checkout
|
||||
|
|
|
|||
4
.github/workflows/frontend.yml
vendored
4
.github/workflows/frontend.yml
vendored
|
|
@ -8,8 +8,8 @@ jobs:
|
|||
fail-fast: false
|
||||
matrix:
|
||||
node-version: [14.x]
|
||||
os: [ubuntu-latest]
|
||||
runs-on: ubuntu-latest
|
||||
os: [ubuntu-20.04]
|
||||
runs-on: ${{ matrix.os }}
|
||||
env:
|
||||
working-directory: ./hyperglass/ui
|
||||
steps:
|
||||
|
|
|
|||
4
.github/workflows/installer.yml
vendored
4
.github/workflows/installer.yml
vendored
|
|
@ -7,8 +7,8 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [ubuntu-latest]
|
||||
runs-on: ubuntu-latest
|
||||
os: [ubuntu-20.04]
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
steps:
|
||||
- name: Git Checkout
|
||||
|
|
|
|||
|
|
@ -2,16 +2,14 @@
|
|||
|
||||
LOG_FILE="$HOME/hyperglass-ci.log"
|
||||
|
||||
echo "[INFO] Copying devices.yaml file..."
|
||||
pwd
|
||||
ls -lsah
|
||||
cp ./hyperglass/examples/devices.yaml $HOME/hyperglass/devices.yaml
|
||||
|
||||
echo "[INFO] Starting setup..."
|
||||
poetry run hyperglass setup -d
|
||||
echo "[SUCCESS] Setup completed."
|
||||
sleep 2
|
||||
|
||||
echo "[INFO] Copying devices.yaml file..."
|
||||
cp ./hyperglass/examples/devices.yaml $HOME/hyperglass/devices.yaml
|
||||
|
||||
echo "[INFO] Setting listen_address..."
|
||||
echo "listen_address: 127.0.0.1" >> $HOME/hyperglass/hyperglass.yaml
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue