File tree Expand file tree Collapse file tree 2 files changed +24
-6
lines changed Expand file tree Collapse file tree 2 files changed +24
-6
lines changed Original file line number Diff line number Diff line change @@ -52,15 +52,24 @@ jobs:
52
52
if : startsWith(matrix.compiler.cc, 'clang')
53
53
run : sudo apt-get install -y ${{ matrix.compiler.cc }}
54
54
55
- - name : Build Poac
55
+ - name : First Generation Build
56
56
run : make
57
57
58
- - name : Self-build Poac
58
+ - name : Second Generation Build
59
59
run : ./build-out/poac build --verbose
60
60
61
- - name : Test self-built binary
61
+ - name : Test the second generation
62
62
run : ./poac-out/debug/poac help
63
63
64
+ - name : Third Generation Build
65
+ run : |
66
+ mv ./poac-out/debug/poac ./
67
+ rm -rf ./poac-out
68
+ ./poac build --verbose --release
69
+
70
+ - name : Test the third generation
71
+ run : ./poac help
72
+
64
73
# - name: Test Poac
65
74
# run: ctest --output-on-failure --verbose
66
75
# working-directory: build
Original file line number Diff line number Diff line change @@ -24,15 +24,24 @@ jobs:
24
24
steps :
25
25
- uses : actions/checkout@v4
26
26
27
- - name : Build Poac
27
+ - name : First Generation Build
28
28
run : make
29
29
30
- - name : Self-build Poac
30
+ - name : Second Generation Build
31
31
run : ./build-out/poac build --verbose
32
32
33
- - name : Test self-built binary
33
+ - name : Test the second generation
34
34
run : ./poac-out/debug/poac help
35
35
36
+ - name : Third Generation Build
37
+ run : |
38
+ mv ./poac-out/debug/poac ./
39
+ rm -rf ./poac-out
40
+ ./poac build --verbose --release
41
+
42
+ - name : Test the third generation
43
+ run : ./poac help
44
+
36
45
# - name: Test Poac
37
46
# run: ctest --output-on-failure --verbose
38
47
# working-directory: build
You can’t perform that action at this time.
0 commit comments