File tree Expand file tree Collapse file tree 5 files changed +0
-103
lines changed Expand file tree Collapse file tree 5 files changed +0
-103
lines changed Original file line number Diff line number Diff line change @@ -1047,39 +1047,6 @@ jobs:
1047
1047
DEST : s3://${{ matrix.deploy-bucket }}
1048
1048
ASSET_DEST : s3://${{ matrix.asset-bucket }}
1049
1049
1050
- jenkins :
1051
- name : Run Jenkins CI
1052
- runs-on : ubuntu-latest
1053
- steps :
1054
- - name : Configure AWS credentials
1055
- uses : aws-actions/configure-aws-credentials@v1
1056
- with :
1057
- aws-access-key-id : ${{ secrets.AWS_ACCESS_KEY_ID }}
1058
- aws-secret-access-key : ${{ secrets.AWS_SECRET_ACCESS_KEY }}
1059
- aws-region : us-gov-west-1
1060
-
1061
- - name : Get Jenkins token
1062
- uses : marvinpinto/action-inject-ssm-secrets@latest
1063
- with :
1064
- ssm_parameter : /frontend-team/github-actions/parameters/JENKINS_API_TOKEN
1065
- env_variable_name : JENKINS_API_TOKEN
1066
-
1067
- - name : Checkout
1068
- uses : actions/checkout@v2
1069
-
1070
- - name : Install dependencies
1071
- uses : ./.github/workflows/install
1072
- timeout-minutes : 30
1073
- with :
1074
- key : ${{ hashFiles('yarn.lock') }}
1075
- yarn_cache_folder : .cache/yarn
1076
- path : |
1077
- .cache/yarn
1078
- node_modules
1079
-
1080
- - name : Trigger Jenkins pipeline
1081
- run : node script/github-actions/trigger-jenkins.js
1082
-
1083
1050
notify-failure :
1084
1051
name : Notify Failure
1085
1052
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -9,13 +9,6 @@ node('vetsgov-general-purpose') {
9
9
defaultValue : true ,
10
10
description : " Hack to cancel the run triggered by webhook" )])]);
11
11
12
- stage(' Cancel' ) {
13
- if (params. cancelBuild) {
14
- currentBuild. result = ' ABORTED'
15
- error(" Aborting run triggered by webhook. Please wait for the run triggered by the GitHub Actions workflow." );
16
- }
17
- }
18
-
19
12
// Checkout vets-website code
20
13
dir(" vets-website" ) {
21
14
checkout scm
Original file line number Diff line number Diff line change @@ -40,11 +40,6 @@ def setup() {
40
40
sh " mkdir -p temp"
41
41
42
42
dockerImage = docker. build(DOCKER_TAG )
43
- retry(5 ) {
44
- dockerImage. inside(DOCKER_ARGS ) {
45
- sh " cd /application && rm -rf node_modules && yarn install --frozen-lockfile --production=false"
46
- }
47
- }
48
43
return dockerImage
49
44
}
50
45
}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -11,4 +11,3 @@ cp .env.example .env && yarn install --production=false
11
11
npm run fetch-drupal-cache
12
12
npm run build -- --buildtype=localhost --api=' ${API_URL}' --host=' ${WEB_HOST}' --port=' ${WEB_PORT}' --apps-directory-name=application
13
13
npm run heroku-serve -- build/localhost -p 3002
14
-
You can’t perform that action at this time.
0 commit comments