allow dictproxy subclasses to be ignorant of transactions in handle_set operations #707
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: deploy on staging2.testrun.org, and run tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
paths-ignore: | |
- 'scripts/**' | |
- '**/README.md' | |
- 'CHANGELOG.md' | |
- 'LICENSE' | |
jobs: | |
deploy: | |
name: deploy on staging2.testrun.org, and run tests | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
concurrency: | |
group: ci-${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ !contains(github.ref, '$GITHUB_REF') }} | |
steps: | |
- uses: jsok/serialize-workflow-action@v1 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: actions/checkout@v4 | |
- name: prepare SSH | |
run: | | |
mkdir ~/.ssh | |
echo "${{ secrets.STAGING_SSH_KEY }}" >> ~/.ssh/id_ed25519 | |
chmod 600 ~/.ssh/id_ed25519 | |
ssh-keyscan staging2.testrun.org > ~/.ssh/known_hosts | |
# save previous acme & dkim state | |
rsync -avz [email protected]:/var/lib/acme . || true | |
rsync -avz [email protected]:/etc/dkimkeys . || true | |
# store previous acme & dkim state on ns.testrun.org, if it contains useful certs | |
if [ -f dkimkeys/opendkim.private ]; then rsync -avz -e "ssh -o StrictHostKeyChecking=accept-new" dkimkeys [email protected]:/tmp/ || true; fi | |
if [ "$(ls -A acme/certs)" ]; then rsync -avz -e "ssh -o StrictHostKeyChecking=accept-new" acme [email protected]:/tmp/ || true; fi | |
# make sure CAA record isn't set | |
ssh -o StrictHostKeyChecking=accept-new [email protected] sed -i '/CAA/d' /etc/nsd/staging2.testrun.org.zone | |
ssh [email protected] systemctl reload nsd | |
- name: rebuild staging2.testrun.org to have a clean VPS | |
run: | | |
curl -X POST \ | |
-H "Authorization: Bearer ${{ secrets.HETZNER_API_TOKEN }}" \ | |
-H "Content-Type: application/json" \ | |
-d '{"image":"debian-12"}' \ | |
"https://api.hetzner.cloud/v1/servers/${{ secrets.STAGING_SERVER_ID }}/actions/rebuild" | |
- run: scripts/initenv.sh | |
- name: append venv/bin to PATH | |
run: echo venv/bin >>$GITHUB_PATH | |
- name: upload TLS cert after rebuilding | |
run: | | |
echo " --- wait until staging2.testrun.org VPS is rebuilt --- " | |
rm ~/.ssh/known_hosts | |
while ! ssh -o ConnectTimeout=180 -o StrictHostKeyChecking=accept-new -v [email protected] id -u ; do sleep 1 ; done | |
ssh -o StrictHostKeyChecking=accept-new -v [email protected] id -u | |
# download acme & dkim state from ns.testrun.org | |
rsync -e "ssh -o StrictHostKeyChecking=accept-new" -avz [email protected]:/tmp/acme acme-restore || true | |
rsync -avz [email protected]:/tmp/dkimkeys dkimkeys-restore || true | |
# restore acme & dkim state to staging2.testrun.org | |
rsync -avz acme-restore/acme/ [email protected]:/var/lib/acme || true | |
rsync -avz dkimkeys-restore/dkimkeys/ [email protected]:/etc/dkimkeys || true | |
ssh -o StrictHostKeyChecking=accept-new -v [email protected] chown root:root -R /var/lib/acme || true | |
- name: run formatting checks | |
run: cmdeploy fmt -v | |
- name: run deploy-chatmail offline tests | |
run: pytest --pyargs cmdeploy | |
- run: cmdeploy init staging2.testrun.org | |
- run: cmdeploy run --verbose | |
- name: set DNS entries | |
run: | | |
ssh -o StrictHostKeyChecking=accept-new [email protected] chown opendkim:opendkim -R /etc/dkimkeys | |
cmdeploy dns --zonefile staging-generated.zone --verbose | |
cat staging-generated.zone >> .github/workflows/staging.testrun.org-default.zone | |
cat .github/workflows/staging.testrun.org-default.zone | |
scp .github/workflows/staging.testrun.org-default.zone [email protected]:/etc/nsd/staging2.testrun.org.zone | |
ssh [email protected] nsd-checkzone staging2.testrun.org /etc/nsd/staging2.testrun.org.zone | |
ssh [email protected] systemctl reload nsd | |
- name: cmdeploy test | |
run: CHATMAIL_DOMAIN2=nine.testrun.org cmdeploy test --slow | |
- name: cmdeploy dns (try 3 times) | |
run: cmdeploy dns -v || cmdeploy dns -v || cmdeploy dns -v | |