Skip to content

Commit

Permalink
Merge branch 'main' into jsweet-dead
Browse files Browse the repository at this point in the history
  • Loading branch information
vorth committed Sep 12, 2024
2 parents 7983483 + 9839a42 commit 0c750aa
Showing 1 changed file with 78 additions and 0 deletions.
78 changes: 78 additions & 0 deletions .github/workflows/online.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,84 @@ jobs:
with:
lfs: 'true'

<<<<<<< HEAD
=======
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'

- name: Checkout sourcemap-builder
uses: actions/checkout@v4
with:
repository: lgrignon/sourcemap-builder
path: sourcemap-builder
- name: Build & deploy sourcemap-builder
run: |
pwd
cd sourcemap-builder
pwd
mvn clean install -Dmaven.test.skip=true -DskipJavadoc=true -DskipSigning=true
cd ..
- name: Checkout modified jsweet
uses: actions/checkout@v4
with:
repository: vorth/jsweet
ref: develop
path: jsweet
- name: Build & deploy jsweet transpiler
run: |
pwd
cd jsweet
pwd
mvn clean install -Dmaven.test.skip=true -DskipJavadoc=true -DskipSigning=true
cd ..
- name: Checkout modified jsweet-maven-plugin
uses: actions/checkout@v4
with:
repository: vorth/jsweet-maven-plugin
path: jsweet-maven
- name: Build & deploy jsweet-maven-plugin
run: |
pwd
cd jsweet-maven
pwd
mvn clean install -Dmaven.test.skip=true -DskipJavadoc=true -DskipSigning=true
cd ..
- name: Checkout modified j4ts
uses: actions/checkout@v4
with:
repository: vorth/j4ts
path: j4ts
- name: Build & deploy j4ts
run: |
pwd
cd j4ts
pwd
chmod +x mvnw
./mvnw clean compile install
cd ..
- name: Checkout modified jsweet-gradle-plugin
uses: actions/checkout@v4
with:
repository: vorth/jsweet-gradle-plugin
ref: update-jsweet
path: plugin
- name: Build & deploy jsweet-gradle-plugin
run: |
pwd
cd plugin
pwd
chmod +x gradlew
./gradlew publishToMavenLocal -DskipSigning=true
cd ..
>>>>>>> main
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
Expand Down

0 comments on commit 0c750aa

Please sign in to comment.