Skip to content

Commit bc302d1

Browse files
authored
Do not test on R 3.5 for now. Disable all testing, caching, and docker (#150)
1 parent 4563d79 commit bc302d1

File tree

4 files changed

+29
-14
lines changed

4 files changed

+29
-14
lines changed

.DS_Store

-6 KB
Binary file not shown.

.github/workflows/apps-cache-matrix.yml

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,39 +25,41 @@ jobs:
2525
uses: ./.github/workflows/apps-config.yml
2626

2727
macos-release:
28-
if: ${{ ! cancelled() }}
28+
if: success() || failure()
2929
needs: [config, ubuntu-release]
3030
uses: ./.github/workflows/apps-cache-os.yml
3131
with:
3232
r-version: ${{ needs.config.outputs.release }}
3333
os: ${{ needs.config.outputs.macos }}
3434
cache-version: ${{ needs.config.outputs.cache-version }}
3535
macos-oldrel-1:
36-
if: ${{ ! cancelled() }}
36+
if: success() || failure()
3737
needs: [config, ubuntu-oldrel-1]
3838
uses: ./.github/workflows/apps-cache-os.yml
3939
with:
4040
r-version: ${{ needs.config.outputs.oldrel1 }}
4141
os: ${{ needs.config.outputs.macos }}
4242
cache-version: ${{ needs.config.outputs.cache-version }}
4343
macos-oldrel-2:
44-
if: ${{ ! cancelled() }}
44+
if: success() || failure()
4545
needs: [config, ubuntu-oldrel-2]
4646
uses: ./.github/workflows/apps-cache-os.yml
4747
with:
4848
r-version: ${{ needs.config.outputs.oldrel2 }}
4949
os: ${{ needs.config.outputs.macos }}
5050
cache-version: ${{ needs.config.outputs.cache-version }}
5151
macos-oldrel-3:
52-
if: ${{ ! cancelled() }}
52+
if: success() || failure()
5353
needs: [config, ubuntu-oldrel-3]
5454
uses: ./.github/workflows/apps-cache-os.yml
5555
with:
5656
r-version: ${{ needs.config.outputs.oldrel3 }}
5757
os: ${{ needs.config.outputs.macos }}
5858
cache-version: ${{ needs.config.outputs.cache-version }}
5959
macos-oldrel-4:
60-
if: ${{ ! cancelled() }}
60+
# TODO-future: re-enable this when R 3.6 is oldrel4
61+
# if: ${{ ! cancelled() }}
62+
if: false
6163
needs: [config, ubuntu-oldrel-4]
6264
uses: ./.github/workflows/apps-cache-os.yml
6365
with:
@@ -95,6 +97,8 @@ jobs:
9597
os: ${{ needs.config.outputs.ubuntu }}
9698
cache-version: ${{ needs.config.outputs.cache-version }}
9799
ubuntu-oldrel-4:
100+
# TODO-future: re-enable this when R 3.6 is oldrel4
101+
if: false
98102
needs: config
99103
uses: ./.github/workflows/apps-cache-os.yml
100104
with:
@@ -104,39 +108,41 @@ jobs:
104108

105109

106110
windows-release:
107-
if: ${{ ! cancelled() }}
111+
if: success() || failure()
108112
needs: [config, macos-release]
109113
uses: ./.github/workflows/apps-cache-os.yml
110114
with:
111115
r-version: ${{ needs.config.outputs.release }}
112116
os: ${{ needs.config.outputs.windows }}
113117
cache-version: ${{ needs.config.outputs.cache-version }}
114118
windows-oldrel-1:
115-
if: ${{ ! cancelled() }}
119+
if: success() || failure()
116120
needs: [config, macos-oldrel-1]
117121
uses: ./.github/workflows/apps-cache-os.yml
118122
with:
119123
r-version: ${{ needs.config.outputs.oldrel1 }}
120124
os: ${{ needs.config.outputs.windows }}
121125
cache-version: ${{ needs.config.outputs.cache-version }}
122126
windows-oldrel-2:
123-
if: ${{ ! cancelled() }}
127+
if: success() || failure()
124128
needs: [config, macos-oldrel-2]
125129
uses: ./.github/workflows/apps-cache-os.yml
126130
with:
127131
r-version: ${{ needs.config.outputs.oldrel2 }}
128132
os: ${{ needs.config.outputs.windows }}
129133
cache-version: ${{ needs.config.outputs.cache-version }}
130134
windows-oldrel-3:
131-
if: ${{ ! cancelled() }}
135+
if: success() || failure()
132136
needs: [config, macos-oldrel-3]
133137
uses: ./.github/workflows/apps-cache-os.yml
134138
with:
135139
r-version: ${{ needs.config.outputs.oldrel3 }}
136140
os: ${{ needs.config.outputs.windows }}
137141
cache-version: ${{ needs.config.outputs.cache-version }}
138142
windows-oldrel-4:
139-
if: ${{ ! cancelled() }}
143+
# TODO-future: re-enable this when R 3.6 is oldrel4
144+
# if: ${{ ! cancelled() }}
145+
if: false
140146
needs: [config, macos-oldrel-4]
141147
uses: ./.github/workflows/apps-cache-os.yml
142148
with:

.github/workflows/apps-docker.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ jobs:
4141
- ${{ needs.config.outputs.oldrel1 }}
4242
- ${{ needs.config.outputs.oldrel2 }}
4343
- ${{ needs.config.outputs.oldrel3 }}
44-
- ${{ needs.config.outputs.oldrel4 }}
44+
# TODO-future; Re-enable this when R 3.6 is `oldrel4`
45+
# - ${{ needs.config.outputs.oldrel4 }}
4546

4647
docker:
4748
# - workdir: inst/Docker/centos

.github/workflows/apps-test-matrix.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
precheck:
2222
uses: ./.github/workflows/apps-test-precheck.yml
2323
config:
24+
needs: [precheck]
2425
uses: ./.github/workflows/apps-config.yml
2526

2627

@@ -69,7 +70,9 @@ jobs:
6970
SLACK_CHANNEL_ID: ${{ secrets.SLACK_CHANNEL_ID }}
7071
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
7172
macos-oldrel-4:
72-
if: ${{ ! cancelled() }}
73+
# TODO-future: re-enable this when R 3.6 is oldrel4
74+
# if: ${{ ! cancelled() }}
75+
if: false
7376
needs: [config, ubuntu-oldrel-4]
7477
uses: ./.github/workflows/apps-test-os.yml
7578
with:
@@ -123,6 +126,8 @@ jobs:
123126
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
124127
ubuntu-oldrel-4:
125128
needs: [precheck, config]
129+
# TODO-future: re-enable this when R 3.6 is oldrel4
130+
if: false
126131
uses: ./.github/workflows/apps-test-os.yml
127132
with:
128133
r-version: ${{ needs.config.outputs.oldrel4 }}
@@ -178,7 +183,9 @@ jobs:
178183
SLACK_CHANNEL_ID: ${{ secrets.SLACK_CHANNEL_ID }}
179184
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
180185
windows-oldrel-4:
181-
if: ${{ ! cancelled() }}
186+
# TODO-future: re-enable this when R 3.6 is oldrel4
187+
# if: ${{ ! cancelled() }}
188+
if: false
182189
needs: [config, macos-oldrel-4]
183190
uses: ./.github/workflows/apps-test-os.yml
184191
with:
@@ -211,4 +218,5 @@ jobs:
211218
- windows-oldrel-1
212219
- windows-oldrel-2
213220
- windows-oldrel-3
214-
- windows-oldrel-4
221+
# TODO-future: re-enable this when R 3.6 is oldrel4
222+
# - windows-oldrel-4

0 commit comments

Comments
 (0)