Skip to content

Commit 51c68c5

Browse files
authored
Merge pull request #13 from PickNikRobotics/update-environment-variables
Update environment variables for 9.0
2 parents d16b58a + 56b2f24 commit 51c68c5

File tree

1 file changed

+5
-12
lines changed

1 file changed

+5
-12
lines changed

.github/workflows/workspace_integration_test.yaml

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ on:
2020
default: "studio_16_core_runner"
2121

2222
secrets:
23-
studio_license_key:
24-
required: false
23+
moveit_license_key:
24+
required: true
2525

2626
jobs:
2727
setup:
@@ -34,12 +34,12 @@ jobs:
3434
needs: setup
3535
runs-on: ${{ inputs.runner }}
3636
env:
37-
STUDIO_LICENSE_KEY: ${{ secrets.studio_license_key || secrets.STUDIO_CI_LICENSE_KEY }}
37+
MOVEIT_LICENSE_KEY: ${{ secrets.moveit_license_key }}
3838
RMW_IMPLEMENTATION: rmw_cyclonedds_cpp
3939
CYCLONEDDS_URI: /tmp/cyclonedds.xml
40-
STUDIO_DOCKER_TAG: ${{ inputs.image_tag }}
40+
MOVEIT_DOCKER_TAG: ${{ inputs.image_tag }}
4141
# We always need to test in mocked hardware
42-
STUDIO_CONFIG_PACKAGE: ${{ inputs.config_package }}
42+
MOVEIT_CONFIG_PACKAGE: ${{ inputs.config_package }}
4343
container: picknikciuser/moveit-studio:${{ inputs.image_tag }}
4444
steps:
4545
- name: Check if config package specified
@@ -58,13 +58,6 @@ jobs:
5858
- name: Set USER_WS environment variable
5959
id: set_user_ws
6060
run: echo "USER_WS=/__w/$(basename ${{ github.repository }})/$(basename ${{ github.repository }})" >> $GITHUB_ENV
61-
- name: License key exists
62-
run: |
63-
if [ -z "$STUDIO_LICENSE_KEY" ]; then
64-
echo "STUDIO_CI_LICENSE_KEY is not set in the repository secrets"
65-
echo "ERROR: Please set the STUDIO_LICENSE_KEY secret in the repository settings" >> $GITHUB_STEP_SUMMARY
66-
exit 1
67-
fi
6861
- uses: actions/checkout@v4
6962
with:
7063
submodules: recursive

0 commit comments

Comments
 (0)