Compare commits

...

9 commits

Author SHA1 Message Date
44af3a8715 Fix python dependency detection
All checks were successful
/ test (push) Successful in 1m24s
/ deploy (push) Successful in 3m43s
2024-11-11 21:56:04 +01:00
33631f4f2d Fuck forgejo actions
Some checks failed
/ test (push) Failing after 3m7s
/ deploy (push) Has been skipped
2024-11-11 21:29:31 +01:00
c0d8069097 It seems we still need to specify python version?
Some checks failed
/ test (push) Failing after 35s
/ deploy (push) Has been skipped
2024-11-11 21:16:21 +01:00
e38cab8add Fix job dependencies
Some checks failed
/ test (push) Failing after 42s
/ deploy (push) Has been skipped
2024-11-11 21:13:25 +01:00
5908c1a192 Do not specify python version
Some checks failed
/ test (push) Failing after 34s
/ deploy (push) Has been cancelled
2024-11-11 21:09:52 +01:00
835de0ae46 fix python module installation
Some checks failed
/ test (push) Failing after 32s
/ deploy (push) Has been cancelled
2024-11-11 21:08:48 +01:00
38cfe3d686 Fix python version
Some checks failed
/ test (push) Failing after 36s
/ deploy (push) Has been cancelled
2024-11-11 21:08:08 +01:00
9f65113c3a cicd: Add testing
Some checks failed
/ test (push) Failing after 34s
/ deploy (push) Successful in 3m33s
2024-11-11 20:49:46 +01:00
6e9b4019a2 cicd: Deploy testing automatically 2024-11-11 20:49:46 +01:00

View file

@ -0,0 +1,60 @@
on:
push:
branches:
- testing
- feature/forgejo-actions
jobs:
test:
runs-on: docker
container:
image: ghcr.io/catthehacker/ubuntu:act-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
cache-dependency-path: '**/requirements.prod.txt'
- name: Install dependencies
working-directory: core
run: pip3 install -r requirements.dev.txt
- name: Run django tests
working-directory: core
run: python3 manage.py test
deploy:
needs: [test]
runs-on: docker
steps:
- uses: actions/checkout@v4
- name: Install ansible
run: |
apt update -y
apt install python3-pip -y
python3 -m pip install ansible
python3 -m pip install ansible-lint
- name: Populate relevant files
run: |
mkdir ~/.ssh
echo "${{ secrets.C3LF_SSH_TESTING }}" > ~/.ssh/id_ed25519
chmod 0600 ~/.ssh/id_ed25519
ls -lah ~/.ssh
command -v ssh-agent >/dev/null || ( apt-get update -y && apt-get install openssh-client -y )
eval $(ssh-agent -s)
ssh-add ~/.ssh/id_ed25519
echo "andromeda.lab.or.it ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDXPoO0PE+B9PYwbGaLo98zhbmjAkp6eBtVeZe43v/+T" >> ~/.ssh/known_hosts
mkdir /etc/ansible
echo "${{ secrets.C3LF_INVENTORY_TESTING }}" > /etc/ansible/hosts
- name: Check ansible version
run: |
ansible --version
- name: List ansible hosts
run: |
ansible -m ping Andromeda
- name: Deploy testing
run: |
cd deploy/ansible
ansible-playbook playbooks/deploy-c3lf-sys3.yml