-
Notifications
You must be signed in to change notification settings - Fork 173
67 lines (60 loc) · 2.42 KB
/
sync.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: sync
on:
schedule:
- cron: "57 2 * * *"
workflow_dispatch:
inputs:
debug_with_ssh_key:
description: 'Public SSH key to use to debug failures'
required: false
env:
GIT_CONFIG_PARAMETERS: "'user.name=Git for Windows Build Agent' '[email protected]' 'windows.sdk64.path=${{ github.workspace }}' 'windows.sdk32.path=' 'http.sslbackend=schannel' 'core.autocrlf=false' 'checkout.workers=16'"
HOME: "${{ github.workspace }}\\home\\git-ci"
MSYSTEM: MSYS
jobs:
sync:
if: github.repository_owner == 'git-for-windows' || github.event.inputs.debug_with_ssh_key != ''
runs-on: windows-latest
environment: sync
steps:
- name: clone git-sdk-64
uses: actions/checkout@v4
with:
persist-credentials: true
token: ${{ secrets.PUSH_TOKEN }}
- name: Update all Pacman packages
shell: pwsh
run: |
& .\update-via-pacman.ps1
- name: use git-sdk-64's Bash and git.exe
run: "usr\\bin\\bash.exe -lc 'cygpath -aw /usr/bin >>$GITHUB_PATH && cygpath -aw /cmd >>$GITHUB_PATH'"
- name: commit & push SDK
shell: bash
run: |
set -x &&
sh -x .github/commit-sdk.sh commit &&
git push origin ${{ github.ref }}
- name: use MSYS2 for tmate
if: failure() && github.event.inputs.debug_with_ssh_key != ''
run: "usr\\bin\\bash.exe -lc 'cygpath -aw /c/msys64/usr/bin >>$GITHUB_PATH'"
- name: Debug using tmate
if: failure() && github.event.inputs.debug_with_ssh_key != ''
shell: bash
run: |
# Install tmate
pacman -Sy --noconfirm tmate openssh &&
# Restrict SSH access to the "actor", i.e. the GitHub user who triggered this workflow
mkdir -p ~/.ssh &&
echo '${{github.event.inputs.debug_with_ssh_key}}' >~/.ssh/authorized_keys &&
# Generate an SSH key (needed for tmate)
echo -e 'y\n' | ssh-keygen -q -t rsa -N '' -f ~/.ssh/id_rsa &&
# Start tmate session
export CHERE_INVOKING=1 &&
tmate -S /tmp/tmate.sock -a ~/.ssh/authorized_keys new-session -d &&
tmate -S /tmp/tmate.sock wait tmate-ready &&
# Print SSH invocation every 5 seconds, until tmate session has terminated
while test -e /tmp/tmate.sock
do
tmate -S /tmp/tmate.sock display -p '#{tmate_ssh}'
sleep 5
done