Skip to content

Commit

Permalink
Create symbolic links for other test directories
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva committed Aug 2, 2024
1 parent e3c869c commit c3b13a5
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/smoke-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,15 @@ jobs:
echo "Starting directory preparation"
start_time=$(date +%s%N)
# Create a single copy of the source
cp -R src test_base
# Create symbolic links for other test directories
for suite in unit feature_hyde feature_framework publications realtime_compiler; do
cp -R src ${suite}_tests &
ln -s test_base ${suite}_tests
done
wait
# Move .git directory
mv src/.git .
end_time=$(date +%s%N)
Expand Down

0 comments on commit c3b13a5

Please sign in to comment.