We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c4ed80c + b640b0c commit b490258Copy full SHA for b490258
1 file changed
.github/workflows/bot_build.yml
@@ -0,0 +1,29 @@
1
+name: Bot build script
2
+
3
+on:
4
+ pull_request:
5
+ branches: [ "main" ]
6
7
+jobs:
8
+ check_symlinks:
9
+ runs-on: ubuntu-latest
10
11
+ steps:
12
+ - name: Git clone software-layer and software-layer-scripts inside it
13
+ run: |
14
+ git clone https://github.com/EESSI/software-layer.git
15
+ cd software-layer
16
+ git clone https://github.com/EESSI/software-layer-scripts.git
17
18
+ - name: Run symlink commands
19
20
+ set -e
21
22
23
+ for file in $(ls software-layer-scripts | egrep -v 'easystacks|LICENSE|README.md|^bot'); do
24
+ ln -s software-layer-scripts/${file}
25
+ done
26
27
+ for file in $(ls software-layer-scripts/bot | grep -v '^build.sh'); do
28
+ ln -s ../software-layer-scripts/bot/${file} bot/${file}
29
0 commit comments