Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

yaml pr #731

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions evergreen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pre: &pre
patch_aliases:
- alias: "chaya-tag-from-yaml"
variant_tags: ["commit-queue-variant"]
task: ".*"
task: *aliases

# containers:
# - name: evg-container
Expand Down Expand Up @@ -67,8 +67,6 @@ buildvariants:
- name: C_dependent_task
- name: A_bad_generator
- name: unit_tests
activate: false
disable: true
- name: validate_commit_message
create_check_run:
path_to_outputs: ""
Expand Down Expand Up @@ -133,7 +131,7 @@ functions:

parameters:
- key: my_param
value: hello world1!
value: ${this_private}
description: something to test parameters woot

post:
Expand Down Expand Up @@ -202,7 +200,7 @@ tasks:
params:
working_dir: src
script: |
echo "admin bynn: ${bynnbynn}"
echo "admin bynn: ${my_param}"
exit 1
- name: test_passing_param_to_child
tags: ["my_tag"]
Expand All @@ -218,7 +216,7 @@ tasks:
working_dir: src
script: |
echo "parent_param_1: ${evg_param_1}, parent_param_2: ${evg_param_2}"
echo "hello world"
echo "${my_param}"

- name: unit_tests
commands:
Expand All @@ -227,7 +225,7 @@ tasks:
num_hosts: 1
provider: docker
background: false
command: "echo hello evan test"
command: "echo ${my_param}"
distro: ubuntu1604-container
image: amazonlinux
stdout_file_name: ${workdir}/garasign_container.out.log
Expand Down