We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3ab8ea commit 561f971Copy full SHA for 561f971
.github/workflows/ci.yml
@@ -2,7 +2,7 @@ name: CI
2
on:
3
push:
4
branches:
5
- - main
+ - FIXME
6
pull_request:
7
jobs:
8
test:
.github/workflows/community-build.yml
@@ -0,0 +1,34 @@
1
+name: Community build
+on:
+ push:
+ branches: [main]
+ tags: ["*"]
+jobs:
+ build:
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v3
11
+ with:
12
+ fetch-depth: 0
13
+ - uses: actions/setup-java@v3
14
15
+ distribution: 'temurin'
16
+ java-version: 11
17
+ cache: 'sbt'
18
+
19
+ - uses: sbt/setup-sbt@v1
20
21
+ - run: sbt cli/pack
22
23
+ - run: |
24
+ zip -r scip-java.zip ./scip-java/target/pack
25
26
+ - name: Upload artifacts
27
+ uses: actions/upload-artifact@v4
28
29
+ path: scip-java.zip
30
+ name: scip-java-binary
31
+ if-no-files-found: error
32
33
34
0 commit comments