We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bb64a2 commit bb77ad0Copy full SHA for bb77ad0
.github/workflows/main.yml
@@ -174,6 +174,20 @@ jobs:
174
env:
175
PRISM_BUILD_MINIMAL: "1"
176
177
+ build-with-old-gcc:
178
+ runs-on: ubuntu-latest
179
+ steps:
180
+ - uses: actions/checkout@v6
181
+ - name: Set up Ruby
182
+ uses: ruby/setup-ruby@v1
183
+ with:
184
+ ruby-version: ruby
185
+ bundler-cache: true
186
+ - name: Generate templates on host
187
+ run: bundle exec rake templates
188
+ - name: Build with old GCC
189
+ run: docker build -f rakelib/almalinux-8.dockerfile .
190
+
191
build-java:
192
runs-on: ubuntu-latest
193
rakelib/almalinux-8.dockerfile
@@ -0,0 +1,5 @@
1
+FROM almalinux:8
2
+RUN dnf install -y make gcc
3
+ADD . /prism
4
+WORKDIR /prism
5
+RUN make
0 commit comments