-
-
Notifications
You must be signed in to change notification settings - Fork 14
72 lines (55 loc) · 1.58 KB
/
full_win64.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
68
69
70
71
name: Full Builds Win64
on: [push]
jobs:
###################################
# #
# FULL BUILDS #
# #
###################################
windows-full-build:
runs-on: windows-2019
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup environment
uses: ilammy/msvc-dev-cmd@v1
- name: Setup MSYS
uses: msys2/setup-msys2@v2
with:
update: true
path-type: inherit
- name: Get machine name
run: |
echo "Machine name: $RUNNER_NAME"
- name: Setup environment
run: mkdir -p ssh
- name: Decode SSH key
run: echo "${{ secrets.SSH_PRIVATE_KEY }}" | base64 -d > ssh/id_rsa
shell: bash
- name: Synchronize clock
shell: cmd
run: |
w32tm /config /manualpeerlist:time.windows.com /syncfromflags:manual /reliable:YES /update
net stop w32time
net start w32time
w32tm /resync /rediscover
- name: Set permissions on SSH key
shell: cmd
run: |
icacls "ssh\id_rsa" /inheritance:r /grant:r "%USERNAME%:R"
- name: Set executable permissions
run: |
chmod +x ./*.sh ./bin/*.sh ./etc/*.sh
- name: Install cmake
run: |
./etc/install_cmake.sh
- name: Build mrv2
run: |
./runme_nolog.sh -t package -D TLRENDER_USD=OFF
- name: Upload binaries
run: |
./bin/upload_sourceforge.sh