From 03654667c7be6d49f836f644a4204800e9ec7358 Mon Sep 17 00:00:00 2001 From: Kei Okada Date: Thu, 28 Apr 2022 09:34:40 +0900 Subject: [PATCH] add test for LC_ALL variable --- .github/workflows/main.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c117dd9..463f17a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -308,6 +308,23 @@ jobs: BEFORE_SCRIPT : "sudo pip install empy" TEST_PKGS : "rospy_tutorials" + noetic_lc_all: + name: noetic_lc_all + runs-on: ubuntu-latest + container : ubuntu:20.04 + steps: + - name: Checkout + uses: actions/checkout@v2 + with: + fetch-depth: 2 + - name: Run jsk_travis + uses: ./ + with: + ADDITIONAL_ENV_TO_DOCKER: 'TEST_VAR1 TEST_VAR2' + ROS_DISTRO : noetic + LC_ALL : LC_ALL_TEST + BEFORE_SCRIPT : 'env | grep LC; if [ \"\${LC_ALL}\" != \"LC_ALL_TEST\" ]; then exit 1; fi' + noetic_python3: name: noetic_python3 runs-on: ubuntu-latest