We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30ca324 commit 20d263eCopy full SHA for 20d263e
1 file changed
.github/workflows/bot_build.yml
@@ -0,0 +1,28 @@
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: Checkout repo
13
+ uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
14
15
+ - name: Git clone software-layer
16
+ run: git clone https://github.com/EESSI/software-layer.git
17
18
+ - name: Run symlink commands
19
+ run: |
20
+ set -e
21
22
+ for file in $(ls software-layer | egrep -v 'easystacks|LICENSE|README.md|^bot'); do
23
+ ln -s software-layer/${file}
24
+ done
25
26
+ for file in $(ls software-layer/bot | grep -v '^build.sh'); do
27
+ ln -s ../software-layer/bot/${file} bot/${file}
28
0 commit comments