-
-
Notifications
You must be signed in to change notification settings - Fork 26
102 lines (80 loc) · 2.88 KB
/
nightly.yml
File metadata and controls
102 lines (80 loc) · 2.88 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Nightly MSBuild
on:
schedule:
- cron: '30 2 * * *' # Run once per day
workflow_dispatch: # Put here!!
env:
# Path to the solution file relative to the root of the project.
SOLUTION_FILE_PATH: .\elenasrc3\elenasrc3.sln
# Configuration type to build.
# You can convert this to a build matrix if you need coverage of multiple configuration types.
# https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
BUILD_CONFIGURATION: Release
permissions: write-all
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
platform: [x86, x64]
steps:
- uses: actions/checkout@v4
with:
ref: iteration46
- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v2
- name: Setup Nuget
uses: Nuget/setup-nuget@v1.0.5
- name: Restore nuget packages
run: nuget restore ${{env.SOLUTION_FILE_PATH}}
- name: Set version
shell: bash
run: |
VER=$(cat VERSION)
echo "VERSION=$VER" >> $GITHUB_ENV
- name: Show variables
run: |
echo "${{ env.VERSION }}"
- name: Build
working-directory: ${{env.GITHUB_WORKSPACE}}
# Add additional options to the MSBuild command line here (like platform or verbosity level).
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}} /p:platform=${{ matrix.platform }} /m:2
- name: Generate Data
shell: cmd
run: scripts\rebuild_data60_${{matrix.platform}}.bat
- name: Run Tests
shell: cmd
run: bin\elena-tests-${{matrix.platform}}.exe
- name: Compile Lib
shell: cmd
run: scripts\rebuild_lib60_${{matrix.platform}}.bat
- name: Prepare Artifact
shell: cmd
run: scripts\create_package_${{matrix.platform}}.bat
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: elena-lang-${{matrix.platform}}-nightly-${{ env.VERSION }}
path: build\${{matrix.platform}}
- run: Compress-Archive .\build\${{matrix.platform}}\* .\build\elena-lang-${{matrix.platform}}-nightly-${{ env.VERSION }}.zip
- name: Delete old release assets
uses: mknejp/delete-release-assets@v1
with:
token: ${{ github.token }}
tag: nightly
assets: 'elena-lang-${{matrix.platform}}-nightly-*.zip'
fail-if-no-assets : false
- name: Upload Release
uses: softprops/action-gh-release@v2
with:
tag_name: nightly
draft: false
prerelease: true
files: |
./build/*.zip