summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlejandro Colomar <alx@kernel.org>2023-12-24 00:29:30 +0100
committerAlejandro Colomar <alx@kernel.org>2023-12-24 00:29:30 +0100
commit8ae15352e0eeaefac768b6fd4dfc52e117681cec (patch)
tree00cc4c59df24410528b21587eadd049d1b183ed5
parent7aaa05d6d8e6fb8ff19aff0f462acddc857b016c (diff)
.github: Remove obsolete CI
Signed-off-by: Alejandro Colomar <alx@kernel.org>
-rw-r--r--.github/workflows/ci-push.yaml62
1 files changed, 0 insertions, 62 deletions
diff --git a/.github/workflows/ci-push.yaml b/.github/workflows/ci-push.yaml
deleted file mode 100644
index d73e72d..0000000
--- a/.github/workflows/ci-push.yaml
+++ /dev/null
@@ -1,62 +0,0 @@
-name: CI-push
-
-on:
- push:
- pull_request:
-jobs:
- main:
- runs-on: ubuntu-20.04
- steps:
- -
- name: git clone alejandro-colomar/containers
- run: |
- sudo git -C /usr/local/src \
- clone --single-branch --branch 'v0.4.1' \
- http://github.com/alejandro-colomar/containers.git;
- -
- name: make swarm
- run: sudo make -C /usr/local/src/containers swarm;
- -
- name: checkout
- uses: actions/checkout@v2
- -
- name: git config
- run: |
- git config --global user.email 'ci@test.com';
- git config --global user.name 'ci';
- -
- name: sed
- run: sed -i 's/worker/manager/' etc/swarm/manifests/compose.yaml;
- -
- name: release_test
- run: ./bin/release_test 'ci';
- -
- name: make config
- run: make config;
- -
- name: make image-build
- run: make image-build lbl_a=ci;
- -
- name: docker swarm init
- run: docker swarm init --advertise-addr lo;
- -
- name: make stack-deploy
- run: sudo make stack-deploy;
- -
- name: docker service ls
- run: |
- while true; do
- sleep 1;
- docker service ls \
- |grep '\([0-9]\)/\1' \
- && break;
- done;
- -
- name: curl
- run: |
- while true; do
- sleep 1;
- curl -4s -o /dev/null -w '%{http_code}' localhost:31001 \
- |grep 200 \
- && break;
- done;