summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authora1346054 <36859588+a1346054@users.noreply.github.com>2021-08-19 11:05:15 +0000
committerPauli <pauli@openssl.org>2021-09-02 12:56:29 +1000
commitd24b979dbf247ed3eecf973f3ee669a2e3b59e8f (patch)
tree70637c70c55aa8c6b4d88ef485984b4789d03067 /.github
parenta0bbd4be5a8231e26322a8e0a3df68ffd1db0edb (diff)
always use the same perl in $PATH
Different tests may use unexpectedly different versions of perl, depending on whether they hardcode the path to the perl executable or if they resolve the path from the environment. This fixes it so that the same perl is always used. Fix some trailing whitespace and spelling mistakes as well. CLA: trivial Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/16362) (cherry picked from commit 473664aafdff1f60db99929bdd43c2a9b26d14cd)
Diffstat (limited to '.github')
-rw-r--r--.github/ISSUE_TEMPLATE.md4
-rw-r--r--.github/ISSUE_TEMPLATE/bug_report.md4
-rw-r--r--.github/ISSUE_TEMPLATE/feature_request.md4
-rw-r--r--.github/workflows/cross-compiles.yml4
-rw-r--r--.github/workflows/run-checker-ci.yml1
5 files changed, 8 insertions, 9 deletions
diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md
index 7a89c4ef13..942a8fc5c6 100644
--- a/.github/ISSUE_TEMPLATE.md
+++ b/.github/ISSUE_TEMPLATE.md
@@ -1,7 +1,7 @@
<!--
NOTE:
- If you're asking about how to use OpenSSL, this isn't the right
+ If you're asking about how to use OpenSSL, this isn't the right
forum. Please see our User Support resources:
https://github.com/openssl/openssl/blob/master/SUPPORT.md
@@ -18,7 +18,7 @@ output and code, like this:
```
#include <stdio.h>
-
+
int main() {
int foo = 1;
printf("%d\n", foo);
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
index 5cc780b6de..4245a14b80 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -11,7 +11,7 @@ please take the time to read the following lines before posting it.
NOTE:
- If you're asking about how to use OpenSSL, this isn't the right
+ If you're asking about how to use OpenSSL, this isn't the right
forum. Please see our User Support resources:
https://github.com/openssl/openssl/blob/master/SUPPORT.md
@@ -44,7 +44,7 @@ output and code, like this:
```
#include <stdio.h>
-
+
int main() {
int foo = 1;
printf("%d\n", foo);
diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md
index 4e4ed54cf2..f94c5dc406 100644
--- a/.github/ISSUE_TEMPLATE/feature_request.md
+++ b/.github/ISSUE_TEMPLATE/feature_request.md
@@ -11,7 +11,7 @@ please take the time to read the following lines before posting it.
NOTE:
- If you're asking about how to use OpenSSL, this isn't the right
+ If you're asking about how to use OpenSSL, this isn't the right
forum. Please see our User Support resources:
https://github.com/openssl/openssl/blob/master/SUPPORT.md
@@ -25,7 +25,7 @@ output and code, like this:
```
#include <stdio.h>
-
+
int main() {
int foo = 1;
printf("%d\n", foo);
diff --git a/.github/workflows/cross-compiles.yml b/.github/workflows/cross-compiles.yml
index 514a4fbabe..576a9d3b18 100644
--- a/.github/workflows/cross-compiles.yml
+++ b/.github/workflows/cross-compiles.yml
@@ -17,8 +17,8 @@ jobs:
# fips: set to "no" to disable building FIPS, leave unset to
# build the FIPS provider.
# tests: omit this to run all the tests using QEMU, set it to "none"
- # to never run the tests, otherwise it's value is passed to
- # the "make test" command to allow selectiving disabling of
+ # to never run the tests, otherwise its value is passed to
+ # the "make test" command to allow selective disabling of
# tests.
platform: [
{
diff --git a/.github/workflows/run-checker-ci.yml b/.github/workflows/run-checker-ci.yml
index 3c09194d0c..5a6dd4dc85 100644
--- a/.github/workflows/run-checker-ci.yml
+++ b/.github/workflows/run-checker-ci.yml
@@ -1,4 +1,3 @@
-
# Jobs run per pull request submission
name: Run-checker CI
on: [pull_request, push]