Skip to content

Commit 1dad497

Browse files
committed
Regenerate workflow
1 parent 241b51b commit 1dad497

File tree

1 file changed

+3
-17
lines changed

1 file changed

+3
-17
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
os: [ubuntu-latest]
3030
scala: [3.1.1]
3131
java: [temurin@8]
32-
project: [rootJS, rootJVM, rootNative]
32+
project: [rootJS, rootJVM]
3333
runs-on: ${{ matrix.os }}
3434
steps:
3535
- name: Checkout current branch (full)
@@ -67,10 +67,6 @@ jobs:
6767
if: matrix.project == 'rootJS'
6868
run: sbt 'project ${{ matrix.project }}' '++${{ matrix.scala }}' Test/fastOptJS
6969

70-
- name: nativeLink
71-
if: matrix.project == 'rootNative'
72-
run: sbt 'project ${{ matrix.project }}' '++${{ matrix.scala }}' Test/nativeLink
73-
7470
- name: Test
7571
run: sbt 'project ${{ matrix.project }}' '++${{ matrix.scala }}' test
7672

@@ -84,11 +80,11 @@ jobs:
8480

8581
- name: Make target directories
8682
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/scala3')
87-
run: mkdir -p target all/target units/.jvm/target .js/target core/.native/target site/target core/.js/target units/.native/target core/.jvm/target .jvm/target .native/target units/.js/target project/target
83+
run: mkdir -p target all/target units/.jvm/target .js/target site/target kernel/.jvm/target core/.js/target kernel/.js/target core/.jvm/target .jvm/target .native/target units/.js/target project/target
8884

8985
- name: Compress target directories
9086
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/scala3')
91-
run: tar cf targets.tar target all/target units/.jvm/target .js/target core/.native/target site/target core/.js/target units/.native/target core/.jvm/target .jvm/target .native/target units/.js/target project/target
87+
run: tar cf targets.tar target all/target units/.jvm/target .js/target site/target kernel/.jvm/target core/.js/target kernel/.js/target core/.jvm/target .jvm/target .native/target units/.js/target project/target
9288

9389
- name: Upload target directories
9490
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/scala3')
@@ -152,16 +148,6 @@ jobs:
152148
tar xf targets.tar
153149
rm targets.tar
154150
155-
- name: Download target directories (3.1.1, rootNative)
156-
uses: actions/download-artifact@v2
157-
with:
158-
name: target-${{ matrix.os }}-${{ matrix.java }}-3.1.1-rootNative
159-
160-
- name: Inflate target directories (3.1.1, rootNative)
161-
run: |
162-
tar xf targets.tar
163-
rm targets.tar
164-
165151
- name: Import signing key
166152
if: env.PGP_SECRET != '' && env.PGP_PASSPHRASE == ''
167153
run: echo $PGP_SECRET | base64 -d | gpg --import

0 commit comments

Comments
 (0)