We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 677ec47 commit 99cba70Copy full SHA for 99cba70
.github/workflows/release-linux-glibc-2-17.yml
@@ -20,14 +20,16 @@ jobs:
20
image: slangdeveloper/centos7-gcc9
21
options: -v ${{ github.workspace }}:/home/app -v /etc/ssl/certs/ca-certificates.crt:/etc/ssl/certs/ca-certificates.crt
22
run: |
23
+ source /opt/rh/devtoolset-9/enable
24
+
25
wget https://cmake.org/files/v3.30/cmake-3.30.0.tar.gz
26
+ yum install -y openssl-devel
27
tar zxvf cmake-3.*
28
cd cmake-3.*
29
./bootstrap --prefix=/usr/local
30
make -j$(nproc)
31
make install
32
- source /opt/rh/devtoolset-9/enable
33
cd /home/app
34
git config --global --add safe.directory /home/app
35
cmake --preset default --fresh -DSLANG_SLANG_LLVM_FLAVOR=DISABLE -DSLANG_EMBED_STDLIB=1 -G 'Unix Makefiles'
0 commit comments