File tree Expand file tree Collapse file tree 2 files changed +49
-0
lines changed Expand file tree Collapse file tree 2 files changed +49
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ version : 2
3
+ updates :
4
+ - package-ecosystem : " github-actions"
5
+ directory : " /"
6
+ schedule :
7
+ interval : " monthly"
Original file line number Diff line number Diff line change
1
+ ---
2
+ name : Make
3
+
4
+ on :
5
+ schedule :
6
+ - cron : ' 0 0 1 * *'
7
+ push :
8
+ branches :
9
+ - " **"
10
+ pull_request :
11
+ branches :
12
+ - master
13
+ - main
14
+
15
+ concurrency :
16
+ group : ${{ github.workflow }}-${{ github.ref }}
17
+ cancel-in-progress : true
18
+
19
+ jobs :
20
+ build :
21
+ runs-on : ${{ matrix.os }}
22
+ timeout-minutes : 120
23
+ strategy :
24
+ matrix :
25
+ os :
26
+ - ubuntu-latest
27
+
28
+ steps :
29
+ - name : Checkout
30
+ uses : actions/checkout@v4
31
+ with :
32
+ submodules : true
33
+
34
+ - name : Build on Linux
35
+ if : runner.os == 'Linux'
36
+ shell : bash
37
+ run : |
38
+ set -xeuo pipefail
39
+ sudo bash -c '
40
+ apt-get update; apt-get -y install lazarus
41
+ ' >/dev/null
42
+ fpc -Fulib/common/* -Fulib/common/kernel/linux apps/ide/mseide.pas
You can’t perform that action at this time.
0 commit comments