Skip to content

Commit 477fe1c

Browse files
committed
test commit
1 parent 8fa08aa commit 477fe1c

10 files changed

+44
-53
lines changed

.github/workflows/build_test.arcgis.service.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,12 @@ on:
1010
- plugins/arcgis/service/**
1111

1212
jobs:
13-
1413
config:
1514
uses: ./.github/workflows/config.yaml
1615

1716
test:
1817
name: test plugin arcgis.service
19-
needs: [ config ]
18+
needs: [config]
2019
runs-on: ubuntu-latest
2120
strategy:
2221
matrix:
@@ -39,7 +38,7 @@ jobs:
3938
4039
package:
4140
name: package plugin arcgis.service
42-
needs: [ config, test ]
41+
needs: [config, test]
4342
runs-on: ubuntu-latest
4443
steps:
4544
- name: checkout
@@ -59,7 +58,7 @@ jobs:
5958
- name: pack
6059
run: npm pack ./plugins/arcgis/service
6160
- name: upload package
62-
uses: actions/upload-artifact@v3
61+
uses: actions/upload-artifact@v4
6362
with:
6463
name: arcgis.service-artifacts
6564
path: |

.github/workflows/build_test.arcgis.web-app.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ on:
1010
- plugins/arcgis/web-app/**
1111

1212
jobs:
13-
1413
config:
1514
uses: ./.github/workflows/config.yaml
1615

@@ -42,9 +41,8 @@ jobs:
4241
run: |
4342
npm pack ./plugins/arcgis/web-app/dist/main
4443
- name: upload packages
45-
uses: actions/upload-artifact@v3
44+
uses: actions/upload-artifact@v4
4645
with:
4746
name: arcgis.web-app-artifacts
4847
path: |
4948
ngageoint-mage.arcgis.web-app-*.tgz
50-

.github/workflows/build_test.image.service.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,12 @@ on:
1010
- plugins/image/service/**
1111

1212
jobs:
13-
1413
config:
1514
uses: ./.github/workflows/config.yaml
1615

1716
test:
1817
name: test plugin image.service
19-
needs: [ config ]
18+
needs: [config]
2019
runs-on: ubuntu-latest
2120
strategy:
2221
matrix:
@@ -39,7 +38,7 @@ jobs:
3938
4039
package:
4140
name: package plugin image.service
42-
needs: [ config, test ]
41+
needs: [config, test]
4342
runs-on: ubuntu-latest
4443
steps:
4544
- name: checkout
@@ -59,7 +58,7 @@ jobs:
5958
- name: pack
6059
run: npm pack ./plugins/image/service
6160
- name: upload package
62-
uses: actions/upload-artifact@v3
61+
uses: actions/upload-artifact@v4
6362
with:
6463
name: image.service-artifacts
6564
path: |

.github/workflows/build_test.nga-msi.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,12 @@ on:
1010
- plugins/nga-msi/**
1111

1212
jobs:
13-
1413
config:
1514
uses: ./.github/workflows/config.yaml
1615

1716
test:
1817
name: test plugin nga-msi
19-
needs: [ config ]
18+
needs: [config]
2019
runs-on: ubuntu-latest
2120
strategy:
2221
matrix:
@@ -39,7 +38,7 @@ jobs:
3938
4039
package:
4140
name: package plugin nga-msi
42-
needs: [ config, test ]
41+
needs: [config, test]
4342
runs-on: ubuntu-latest
4443
steps:
4544
- name: checkout
@@ -59,8 +58,8 @@ jobs:
5958
- name: pack
6059
run: npm pack ./plugins/nga-msi
6160
- name: upload package
62-
uses: actions/upload-artifact@v3
61+
uses: actions/upload-artifact@v4
6362
with:
6463
name: nga-msi-artifacts
6564
path: |
66-
ngageoint-mage.*.tgz
65+
ngageoint-mage.*.tgz

.github/workflows/build_test.service.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ jobs:
3636
- name: package
3737
run: npm pack ./service
3838
- name: upload package
39-
uses: actions/upload-artifact@v3
39+
uses: actions/upload-artifact@v4
4040
with:
4141
name: mage.service-artifacts
4242
path: |
4343
ngageoint-mage.service-*.tgz
4444
4545
test:
4646
name: test mage service
47-
needs: [ config, build ]
47+
needs: [config, build]
4848
runs-on: ubuntu-latest
4949
strategy:
5050
matrix:
@@ -64,7 +64,7 @@ jobs:
6464
cd service
6565
npm ci service
6666
- name: download service package
67-
uses: actions/download-artifact@v3
67+
uses: actions/download-artifact@v4
6868
with:
6969
name: mage.service-artifacts
7070
- name: extract service lib
@@ -76,4 +76,4 @@ jobs:
7676
run: |
7777
cd service
7878
npm run ci:test
79-
# TODO: restore coveralls test coverage report - see buildAndTest.yml
79+
# TODO: restore coveralls test coverage report - see buildAndTest.yml

.github/workflows/build_test.web-app.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ jobs:
4141
npm pack ./web-app/dist/core-lib
4242
npm pack ./web-app/dist
4343
- name: upload packages
44-
uses: actions/upload-artifact@v3
44+
uses: actions/upload-artifact@v4
4545
with:
4646
name: mage.web-app-artifacts
4747
path: |
48-
ngageoint-mage.*.tgz
48+
ngageoint-mage.*.tgz

.github/workflows/release.arcgis_plugin.yaml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,11 @@ on:
1717
# release:
1818

1919
jobs:
20-
2120
config:
2221
uses: ./.github/workflows/config.yaml
2322

2423
check_release_version:
25-
needs: [ config ]
24+
needs: [config]
2625
runs-on: ubuntu-latest
2726
steps:
2827
- name: checkout
@@ -41,16 +40,16 @@ jobs:
4140
[[ $(json version < ./plugins/arcgis/web-app/package.json) = ${{ inputs.version }} ]] || exit 1
4241
4342
build_and_test-service:
44-
needs: [ check_release_version ]
43+
needs: [check_release_version]
4544
uses: ./.github/workflows/build_test.arcgis.service.yaml
4645

4746
build_and_test-web-app:
48-
needs: [ check_release_version ]
47+
needs: [check_release_version]
4948
uses: ./.github/workflows/build_test.arcgis.web-app.yaml
5049

5150
publish_packages:
52-
name: publish packages
53-
needs: [ config, build_and_test-service ]
51+
name: publish packages
52+
needs: [config, build_and_test-service]
5453
runs-on: ubuntu-latest
5554
steps:
5655
- name: setup node
@@ -60,11 +59,11 @@ jobs:
6059
- name: install json util
6160
run: npm i -g json
6261
- name: download service packages
63-
uses: actions/download-artifact@v3
62+
uses: actions/download-artifact@v4
6463
with:
6564
name: arcgis.service-artifacts
6665
- name: download web-app packages
67-
uses: actions/download-artifact@v3
66+
uses: actions/download-artifact@v4
6867
with:
6968
name: arcgis.web-app-artifacts
7069
- name: publish to package registry

.github/workflows/release.image_plugin.yaml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,11 @@ on:
1717
# release:
1818

1919
jobs:
20-
2120
config:
2221
uses: ./.github/workflows/config.yaml
2322

2423
check_release_version:
25-
needs: [ config ]
24+
needs: [config]
2625
runs-on: ubuntu-latest
2726
steps:
2827
- name: checkout
@@ -41,16 +40,16 @@ jobs:
4140
# [[ $(json version < ./web-app/package.json) = ${{ inputs.version }} ]] || exit 1
4241

4342
build_and_test-service:
44-
needs: [ check_release_version ]
43+
needs: [check_release_version]
4544
uses: ./.github/workflows/build_test.image.service.yaml
4645

4746
# build_and_test-web-app:
4847
# needs: [ check_release_version ]
4948
# uses: ./.github/workflows/build_test.image.web-app.yaml
5049

5150
publish_packages:
52-
name: publish packages
53-
needs: [ config, build_and_test-service ]
51+
name: publish packages
52+
needs: [config, build_and_test-service]
5453
runs-on: ubuntu-latest
5554
steps:
5655
- name: setup node
@@ -60,7 +59,7 @@ jobs:
6059
- name: install json util
6160
run: npm i -g json
6261
- name: download service packages
63-
uses: actions/download-artifact@v3
62+
uses: actions/download-artifact@v4
6463
with:
6564
name: image.service-artifacts
6665
- name: publish to package registry

.github/workflows/release.nga-msi_plugin.yaml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,11 @@ on:
1717
# release:
1818

1919
jobs:
20-
2120
config:
2221
uses: ./.github/workflows/config.yaml
2322

2423
check_release_version:
25-
needs: [ config ]
24+
needs: [config]
2625
runs-on: ubuntu-latest
2726
steps:
2827
- name: checkout
@@ -38,12 +37,12 @@ jobs:
3837
[[ $(json version < ./plugins/nga-msi/package.json) = ${{ inputs.version }} ]] || exit 1
3938
4039
build_and_test-service:
41-
needs: [ check_release_version ]
40+
needs: [check_release_version]
4241
uses: ./.github/workflows/build_test.nga-msi.yaml
4342

4443
publish_packages:
45-
name: publish packages
46-
needs: [ config, build_and_test-service ]
44+
name: publish packages
45+
needs: [config, build_and_test-service]
4746
runs-on: ubuntu-latest
4847
steps:
4948
- name: setup node
@@ -53,7 +52,7 @@ jobs:
5352
- name: install json util
5453
run: npm i -g json
5554
- name: download service packages
56-
uses: actions/download-artifact@v3
55+
uses: actions/download-artifact@v4
5756
with:
5857
name: nga-msi-artifacts
5958
- name: publish to package registry

.github/workflows/release.yaml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,11 @@ on:
2727
# release:
2828

2929
jobs:
30-
3130
config:
3231
uses: ./.github/workflows/config.yaml
3332

3433
check_release_version:
35-
needs: [ config ]
34+
needs: [config]
3635
runs-on: ubuntu-latest
3736
steps:
3837
- name: checkout
@@ -57,16 +56,16 @@ jobs:
5756
[[ $(json version < ./web-app/projects/core-lib/package.json) = ${{ inputs.version }} ]] || exit 1
5857
5958
build_and_test-service:
60-
needs: [ check_release_version ]
59+
needs: [check_release_version]
6160
uses: ./.github/workflows/build_test.service.yaml
6261

6362
build_and_test-web-app:
64-
needs: [ check_release_version ]
63+
needs: [check_release_version]
6564
uses: ./.github/workflows/build_test.web-app.yaml
6665

6766
create_release:
6867
name: create release
69-
needs: [ config, build_and_test-service, build_and_test-web-app ]
68+
needs: [config, build_and_test-service, build_and_test-web-app]
7069
runs-on: ubuntu-latest
7170
steps:
7271
- name: setup node
@@ -76,11 +75,11 @@ jobs:
7675
- name: install json util
7776
run: npm i -g json
7877
- name: download service artifacts
79-
uses: actions/download-artifact@v3
78+
uses: actions/download-artifact@v4
8079
with:
8180
name: mage.service-artifacts
8281
- name: download web-app artifacts
83-
uses: actions/download-artifact@v3
82+
uses: actions/download-artifact@v4
8483
with:
8584
name: mage.web-app-artifacts
8685
- name: generate instance package.json
@@ -108,8 +107,8 @@ jobs:
108107
ngageoint-mage.*.tgz
109108
110109
publish_packages:
111-
name: publish packages
112-
needs: [ config, create_release ]
110+
name: publish packages
111+
needs: [config, create_release]
113112
runs-on: ubuntu-latest
114113
steps:
115114
- name: setup node
@@ -119,11 +118,11 @@ jobs:
119118
- name: install json util
120119
run: npm i -g json
121120
- name: download service packages
122-
uses: actions/download-artifact@v3
121+
uses: actions/download-artifact@v4
123122
with:
124123
name: mage.service-artifacts
125124
- name: download web-app packages
126-
uses: actions/download-artifact@v3
125+
uses: actions/download-artifact@v4
127126
with:
128127
name: mage.web-app-artifacts
129128
- name: publish to package registry

0 commit comments

Comments
 (0)