Skip to content

Commit effa148

Browse files
authored
Merge pull request #5211 from commercialhaskell/stable-rename-snapshots
Stable rename snapshots
2 parents cf8e8b6 + 5d62522 commit effa148

21 files changed

+89
-119
lines changed

.azure/azure-linux-template.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,20 @@ jobs:
77
vmImage: ${{ parameters.vmImage }}
88
strategy:
99
matrix:
10-
stack-def:
10+
GHC 8.2:
1111
BUILD: stack
12-
STACK_YAML: stack.yaml
13-
stack-lts-12:
12+
STACK_YAML: stack-ghc-82.yaml
13+
GHC 8.4:
1414
BUILD: stack
15-
STACK_YAML: stack-lts-12.yaml
16-
nightly:
15+
STACK_YAML: stack-ghc-84.yaml
16+
GHC 8.6:
1717
BUILD: stack
18-
STACK_YAML: stack-nightly.yaml
18+
STACK_YAML: stack-ghc-86.yaml
1919
style:
2020
BUILD: style
2121
pedantic:
2222
BUILD: pedantic
2323
STACK_YAML: stack.yaml
24-
maxParallel: 5
2524
steps:
2625
- script: |
2726
export STACK_ROOT="$(Build.SourcesDirectory)"/.stack-root;
@@ -105,7 +104,7 @@ jobs:
105104
AWS_ACCESS_KEY_ID: $(AWS_ACCESS_KEY_ID)
106105
AWS_SECRET_ACCESS_KEY: $(AWS_SECRET_ACCESS_KEY)
107106
displayName: 'Installation ${{parameters.os}}'
108-
continueOnError: ${{ eq(variables['STACK_YAML'], 'stack-nightly.yaml') }}
107+
continueOnError: ${{ eq(variables['STACK_YAML'], 'stack-ghc-86.yaml') }}
109108
- script: |
110109
export PATH=$HOME/.local/bin:$PATH;
111110
export AWS_ACCESS_KEY_ID="$(AWS_ACCESS_KEY_ID)";

.azure/azure-nightly-template-linux.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@ jobs:
55
- group: AWS_Keys
66
pool:
77
vmImage: ${{ parameters.vmImage }}
8-
strategy:
9-
matrix:
10-
stack:
11-
BUILD: stack
12-
maxParallel: 1
138
steps:
149
- script: |
1510
export STACK_ROOT="$(Build.SourcesDirectory)"/.stack-root;

.azure/azure-nightly-template-osx.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@ jobs:
55
- group: AWS_Keys
66
pool:
77
vmImage: ${{ parameters.vmImage }}
8-
strategy:
9-
matrix:
10-
stack:
11-
BUILD: stack
12-
maxParallel: 1
138
steps:
149
- script: |
1510
export AWS_ACCESS_KEY_ID="$(AWS_ACCESS_KEY_ID)";

.azure/azure-nightly-template-windows.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@ jobs:
55
- group: AWS_Keys
66
pool:
77
vmImage: ${{ parameters.vmImage }}
8-
strategy:
9-
matrix:
10-
stack:
11-
BUILD: stack
12-
maxParallel: 1
138
steps:
149
- powershell: |
1510
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12

.azure/azure-osx-template.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,6 @@ jobs:
44
- group: AWS_Keys
55
pool:
66
vmImage: ${{ parameters.vmImage }}
7-
strategy:
8-
matrix:
9-
stack-def:
10-
BUILD: stack
11-
STACK_YAML: stack.yaml
12-
maxParallel: 1
137
steps:
148
- script: |
159
export AWS_ACCESS_KEY_ID="$(AWS_ACCESS_KEY_ID)";
@@ -31,7 +25,7 @@ jobs:
3125
env:
3226
OS_NAME: ${{ parameters.os }}
3327
displayName: 'Installation ${{parameters.os}}'
34-
continueOnError: ${{ eq(variables['STACK_YAML'], 'stack-nightly.yaml') }}
28+
continueOnError: ${{ eq(variables['STACK_YAML'], 'stack-ghc-86.yaml') }}
3529
- script: |
3630
export PATH=$HOME/.local/bin:$PATH;
3731
export AWS_ACCESS_KEY_ID="$(AWS_ACCESS_KEY_ID)";

.azure/azure-windows-template.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,6 @@ jobs:
55
- group: AWS_Keys
66
pool:
77
vmImage: ${{ parameters.vmImage }}
8-
strategy:
9-
matrix:
10-
stack:
11-
BUILD: stack
12-
STACK_YAML: stack.yaml
13-
maxParallel: 1
148
steps:
159
- powershell: |
1610
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12

.hlint.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,3 +82,7 @@
8282
- error: {lhs: "Network.HTTP.Types.hContentMD5", rhs: "Network.HTTP.StackClient.hContentMD5"}
8383
- error: {lhs: "Network.HTTP.Types.methodPut", rhs: "Network.HTTP.StackClient.methodPut"}
8484
- ignore: {name: "Use alternative", within: "Network.HTTP.StackClient"}
85+
86+
# Gives an incorrect hint that breaks type checking due to mismatched types
87+
- ignore: {name: "Too strict maybe", within: "Stack.Package" }
88+
- ignore: {name: "Too strict maybe", within: "Stack.Config" }

azure-nightly-pipeline.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
trigger: none
2-
pr: none
2+
pr:
3+
- master
4+
- stable
35

46
schedules:
57
- cron: "0 0 * * *"

doc/azure/azure-linux-template.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ jobs:
1717
ARGS: "--resolver lts-15"
1818
nightly:
1919
ARGS: "--resolver nightly"
20-
maxParallel: 6
2120
steps:
2221
- script: |
2322
export STACK_ROOT="$(Build.SourcesDirectory)"/.stack-root;

doc/azure/azure-osx-template.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ jobs:
1717
ARGS: "--resolver lts-15"
1818
nightly:
1919
ARGS: "--resolver nightly"
20-
maxParallel: 3
2120
steps:
2221
- script: |
2322
export PATH=$HOME/.local/bin:$PATH

0 commit comments

Comments
 (0)