diff --git a/.github/workflows/online.yml b/.github/workflows/online.yml index fcc98350c..e4fb63bf1 100644 --- a/.github/workflows/online.yml +++ b/.github/workflows/online.yml @@ -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: