|
1 | 1 | name: CI |
2 | 2 | on: [push, pull_request] |
3 | 3 | jobs: |
4 | | -# bb-run-test-linux: |
5 | | -# runs-on: ubuntu-latest |
6 | | -# strategy: |
7 | | -# fail-fast: false |
8 | | -# matrix: |
9 | | -# bb-version: [1.3.190, latest] |
10 | | -# steps: |
11 | | -# - name: Check out repository code |
12 | | -# uses: actions/checkout@v3 |
13 | | -# - name: Install clojure tools |
14 | | -# uses: DeLaGuardo/setup-clojure@9.4 |
15 | | -# with: |
16 | | -# bb: ${{ matrix.bb-version }} |
17 | | -# - run: bb run test |
18 | | -# |
19 | | -# bb-run-test-macos: |
20 | | -# runs-on: macos-latest |
21 | | -# strategy: |
22 | | -# fail-fast: false |
23 | | -# matrix: |
24 | | -# bb-version: [1.3.190, latest] |
25 | | -# steps: |
26 | | -# - name: Check out repository code |
27 | | -# uses: actions/checkout@v3 |
28 | | -# - name: Install clojure tools |
29 | | -# uses: DeLaGuardo/setup-clojure@9.4 |
30 | | -# with: |
31 | | -# bb: ${{ matrix.bb-version }} |
32 | | -# - run: bb run test |
33 | | -# |
| 4 | + bb-run-test-linux: |
| 5 | + runs-on: ubuntu-latest |
| 6 | + strategy: |
| 7 | + fail-fast: false |
| 8 | + matrix: |
| 9 | + bb-version: [1.3.190, latest] |
| 10 | + steps: |
| 11 | + - name: Check out repository code |
| 12 | + uses: actions/checkout@v3 |
| 13 | + - name: Install clojure tools |
| 14 | + uses: DeLaGuardo/setup-clojure@9.4 |
| 15 | + with: |
| 16 | + bb: ${{ matrix.bb-version }} |
| 17 | + - run: bb run test |
| 18 | + - name: Upload debug log |
| 19 | + if: failure() |
| 20 | + uses: actions/upload-artifact@v4 |
| 21 | + with: |
| 22 | + name: linux-debug-log |
| 23 | + path: linux-debug.log |
| 24 | + |
| 25 | + bb-run-test-macos: |
| 26 | + runs-on: macos-latest |
| 27 | + strategy: |
| 28 | + fail-fast: false |
| 29 | + matrix: |
| 30 | + bb-version: [1.3.190, latest] |
| 31 | + steps: |
| 32 | + - name: Check out repository code |
| 33 | + uses: actions/checkout@v3 |
| 34 | + - name: Install clojure tools |
| 35 | + uses: DeLaGuardo/setup-clojure@9.4 |
| 36 | + with: |
| 37 | + bb: ${{ matrix.bb-version }} |
| 38 | + - run: bb run test |
| 39 | + - name: Upload debug log |
| 40 | + if: failure() |
| 41 | + uses: actions/upload-artifact@v4 |
| 42 | + with: |
| 43 | + name: macos-debug-log |
| 44 | + path: macos-debug.log |
| 45 | + |
34 | 46 | bb-run-test-windows: |
35 | 47 | runs-on: windows-latest |
36 | 48 | strategy: |
@@ -61,22 +73,22 @@ jobs: |
61 | 73 | if: failure() |
62 | 74 | uses: actions/upload-artifact@v4 |
63 | 75 | with: |
64 | | - name: debug-log |
65 | | - path: debug.log |
66 | | -# |
67 | | -# |
68 | | -# bb-run-lint: |
69 | | -# runs-on: ubuntu-latest |
70 | | -# strategy: |
71 | | -# fail-fast: false |
72 | | -# matrix: |
73 | | -# bb-version: [1.3.190, latest] |
74 | | -# steps: |
75 | | -# - name: Check out repository code |
76 | | -# uses: actions/checkout@v3 |
77 | | -# - name: Install clojure tools |
78 | | -# uses: DeLaGuardo/setup-clojure@9.4 |
79 | | -# with: |
80 | | -# bb: ${{ matrix.bb-version }} |
81 | | -# clj-kondo: latest |
82 | | -# - run: bb run lint |
| 76 | + name: windows-debug-log |
| 77 | + path: windows-debug.log |
| 78 | + |
| 79 | + |
| 80 | + bb-run-lint: |
| 81 | + runs-on: ubuntu-latest |
| 82 | + strategy: |
| 83 | + fail-fast: false |
| 84 | + matrix: |
| 85 | + bb-version: [1.3.190, latest] |
| 86 | + steps: |
| 87 | + - name: Check out repository code |
| 88 | + uses: actions/checkout@v3 |
| 89 | + - name: Install clojure tools |
| 90 | + uses: DeLaGuardo/setup-clojure@9.4 |
| 91 | + with: |
| 92 | + bb: ${{ matrix.bb-version }} |
| 93 | + clj-kondo: latest |
| 94 | + - run: bb run lint |
0 commit comments