Skip to content

Commit b77ef54

Browse files
committed
Merge scala-js-cli repository into scala-js-cli-native-image
1 parent dfd8a50 commit b77ef54

File tree

13 files changed

+867
-59
lines changed

13 files changed

+867
-59
lines changed

.github/workflows/ci.yml

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: CI
2+
on:
3+
push:
4+
branches:
5+
- master
6+
tags:
7+
- "v*"
8+
pull_request:
9+
branches:
10+
- master
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
strategy:
15+
fail-fast: false
16+
steps:
17+
- uses: actions/checkout@v3
18+
with:
19+
fetch-depth: 0
20+
submodules: true
21+
- uses: VirtusLab/scala-cli-setup@0dab3c3ec860f0443d4d25a56a549f9f46204389
22+
with:
23+
jvm: "temurin:17"
24+
- name: Test CLI
25+
run: ./scripts/test-cli.sh
26+
publish:
27+
runs-on: ubuntu-latest
28+
if: github.event_name == 'push'
29+
steps:
30+
- uses: actions/checkout@v3
31+
with:
32+
fetch-depth: 0
33+
submodules: true
34+
- uses: VirtusLab/scala-cli-setup@0dab3c3ec860f0443d4d25a56a549f9f46204389
35+
with:
36+
jvm: "temurin:17"
37+
- run: ./mill -i ci.publishSonatype Cli.publishArtifacts
38+
env:
39+
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
40+
PGP_SECRET: ${{ secrets.PGP_SECRET }}
41+
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
42+
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}

.github/workflows/launchers.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
path: artifacts/
4545
if-no-files-found: error
4646
retention-days: 1
47-
- run: ./mill -i upload artifacts/
47+
- run: ./mill -i ci.upload artifacts/
4848
if: github.event_name == 'push'
4949
env:
5050
UPLOAD_GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.gitignore

+5-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
out/
1+
target/
2+
/.bsp/
3+
/pack/
4+
/cli-test/
5+
out/

LICENSE

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
Copyright (c) 2013-2014 EPFL
2+
Copyright (c) 2017-2022 Scala.js Sébastien Doeraene
3+
4+
All rights reserved.
5+
6+
Redistribution and use in source and binary forms, with or without modification,
7+
are permitted provided that the following conditions are met:
8+
9+
* Redistributions of source code must retain the above copyright notice,
10+
this list of conditions and the following disclaimer.
11+
* Redistributions in binary form must reproduce the above copyright notice,
12+
this list of conditions and the following disclaimer in the documentation
13+
and/or other materials provided with the distribution.
14+
* Neither the name of the EPFL nor the names of its contributors
15+
may be used to endorse or promote products derived from this software
16+
without specific prior written permission.
17+
18+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
22+
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23+
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24+
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
25+
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
26+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1-
GraalVM native image launchers of [scala-js-cli](https://github.com/scala-js/scala-js-cli) (linker only)
1+
# Command Line Interface for Scala.js
22

3-
Mainly meant to be used by [Scala CLI](https://github.com/VirtusLab/scala-cli) (see [`VirtusLab/scala-cli#676`](https://github.com/VirtusLab/scala-cli/pull/676))
3+
`scalajs-cli` provides a Command Line Interface (CLI) to the Scala.js compiler
4+
and linker.
5+
6+
Until Scala.js 1.0.0-M2, the CLI is part of the
7+
[core repository of Scala.js](https://github.com/scala-js/scala-js).
8+
This repository contains the CLI for later versions.
9+
10+
11+
# GraalVM
12+
13+
Mainly meant to be used by [Scala CLI](https://github.com/VirtusLab/scala-cli) (see [`VirtusLab/scala-cli#676`](https://github.com/VirtusLab/scala-cli/pull/676))

0 commit comments

Comments
 (0)