Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
KincoActuatorIsaacLab
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
kevin
KincoActuatorIsaacLab
Commits
5570cb8a
Unverified
Commit
5570cb8a
authored
Jul 23, 2025
by
Alexander Poddubny
Committed by
GitHub
Jul 23, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed post-merge job (#566)
Running the job on the host
parent
6f35c455
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
10 deletions
+4
-10
postmerge-ci.yml
.github/workflows/postmerge-ci.yml
+4
-10
No files found.
.github/workflows/postmerge-ci.yml
View file @
5570cb8a
...
...
@@ -35,17 +35,8 @@ jobs:
env
:
DOCKER_HOST
:
unix:///var/run/docker.sock
DOCKER_TLS_CERTDIR
:
"
"
container
:
image
:
docker:dind
options
:
--security-opt=no-new-privileges:
true
--privileged
steps
:
-
name
:
Install Git LFS
run
:
|
apk update
apk add --no-cache git-lfs
git lfs install
-
name
:
Checkout Code
uses
:
actions/checkout@v4
with
:
...
...
@@ -92,7 +83,10 @@ jobs:
echo "IsaacSim versions: ${{ env.ISAACSIM_BASE_VERSIONS_STRING }}"
# Parse the env variable string into an array
mapfile -d ' ' -t IMAGE_BASE_VERSIONS <<< "${{ env.ISAACSIM_BASE_VERSIONS_STRING }}"
IMAGE_BASE_VERSIONS_STRING="${{ env.ISAACSIM_BASE_VERSIONS_STRING }}"
# Use set to split the string into positional parameters, then convert to array
set -- $IMAGE_BASE_VERSIONS_STRING
IMAGE_BASE_VERSIONS=("$@")
for IMAGE_BASE_VERSION in "${IMAGE_BASE_VERSIONS[@]}"; do
IMAGE_BASE_VERSION=$(echo "$IMAGE_BASE_VERSION" | tr -d '[:space:]')
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment