Skip to content

Commit

Permalink
restconf=fcgi 5
Browse files Browse the repository at this point in the history
  • Loading branch information
olofhagsand committed May 19, 2024
1 parent 1de7fdc commit a0fa329
Showing 1 changed file with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: install example
run: (cd example; sudo make install)

docker-alpine-tests-a-mp:
docker-alpine-test-1:
runs-on: ubuntu-latest
defaults:
run:
Expand Down Expand Up @@ -81,9 +81,9 @@ jobs:
- name: start container
run: ./start.sh
- name: run test a-m,p
run: sudo docker exec -t clixon-test bash -c 'cd /usr/local/bin/test && detail=true pattern="test_a*.sh test_c*.sh test_d*.sh test_f*.sh test_h*.sh test_i*.sh test_j*.sh test_l*.sh test_m*.sh test_p*.sh" ./sum.sh'
run: sudo docker exec -t clixon-test bash -c 'cd /usr/local/bin/test && detail=true pattern="test_a*.sh test_c*.sh test_d*.sh test_f*.sh test_h*.sh test_i*.sh test_j*.sh test_l*.sh test_m*.sh test_o*.sh" ./sum.sh'

docker-alpine-tests-n-o:
docker-alpine-test-2:
runs-on: ubuntu-latest
defaults:
run:
Expand Down Expand Up @@ -112,9 +112,9 @@ jobs:
- name: start container
run: ./start.sh
- name: run test n-o
run: sudo docker exec -t clixon-test bash -c 'cd /usr/local/bin/test && detail=true pattern="test_n*.sh test_o*.sh" ./sum.sh'
run: sudo docker exec -t clixon-test bash -c 'cd /usr/local/bin/test && detail=true pattern="test_n*.sh test_p*.sh" ./sum.sh'

docker-alpine-tests-r-z:
docker-alpine-test-3:
runs-on: ubuntu-latest
defaults:
run:
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
- name: run test r-y
run: sudo docker exec -t clixon-test bash -c 'cd /usr/local/bin/test && detail=true pattern="test_r*.sh test_s*.sh test_t*.sh test_u*.sh test_w*.sh test_x*.sh test_y*.sh" ./sum.sh'

docker-alpine-tests-fcgi-r:
docker-alpine-test-fcgi-r:
runs-on: ubuntu-latest
defaults:
run:
Expand All @@ -155,6 +155,20 @@ jobs:
# 2) Inline of make test, but without configure
- name: in-line clone
run: git clone file://$(realpath ../..)
- name: openconfig
run: mkdir -p openconfig; cd openconfig ; git clone https://github.com/openconfig/public
- name: yangmodels1
run: mkdir -p yang/standard
- name: yangmodels2
run: (cd yang; git init;)
- name: yangmodels3
run: (cd yang; git remote add -f origin https://github.com/YangModels/yang)
- name: yangmodels4
run: (cd yang; git config core.sparseCheckout true)
- name: yangmodels5
run: (echo "standard/" >> yang/.git/info/sparse-checkout; echo "experimental/" >> yang/.git/info/sparse-checkout)
- name: yangmodels6
run: (cd yang; git pull origin main)
- name: make docker fcgi
run: sudo docker build -f Dockerfile.fcgi -t clixon/clixon-test .
- name: start container
Expand Down

0 comments on commit a0fa329

Please sign in to comment.