-
Notifications
You must be signed in to change notification settings - Fork 11
61 lines (55 loc) · 1.94 KB
/
Beta.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
name: Beta
on:
workflow_dispatch:
inputs:
CONFIG_FILE:
description: "CONFIG_FILE"
required: true
RSS_Feed:
description: "RSS_Feed"
required: false
type: string
EXTRA_PARAMS:
description: "EXTRA_PARAMS from config"
required: false
type: string
jobs:
CI:
name: "CI"
runs-on: Windows
timeout-minutes: 60
steps:
- name: Check out the GM-TestFramework repo
uses: actions/checkout@v4
with:
path: GM-TF
- name: Wait for 10 Minutes
run: Start-Sleep -Seconds 300
shell: pwsh
- name: Testing Manually with passing RSS_Feed for Beta builds
run: ./launcher igorRunTests --config-file "C:\GM-TestFramework\configs\${{ github.event.inputs.CONFIG_FILE }}" --feed '${{ secrets.RSS_FEED_BETA }}' ${{ github.event.inputs.EXTRA_PARAMS }}
working-directory: GM-TF
shell: pwsh
- name: Upload Results Artifacts
if: always()
uses: actions/upload-artifact@v4
with:
name: summary_file
path: ${{ github.workspace }}\GM-TF\results
- name: Download Runtime Build Number
uses: dawidd6/action-download-artifact@v3
with:
name: buildnumber
path: ${{ github.workspace }}\GM-TF
workflow: Zeus-Runtime-Beta.yml
repo: YoYoGames/GameMaker
github_token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
- name: Running TF Compare Script
run: python .\tf_compare.py --github-token ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} --workflow ${{ github.workflow }}.yml
working-directory: GM-TF
- name: Upload TF Compare Output
if: always()
uses: actions/upload-artifact@v4
with:
name: tf_compare_output_file
path: ${{ github.workspace }}\GM-TF\TF_Output.txt