Skip to content

Commit

Permalink
Merge pull request #1008 from amvanbaren/test-smoketest
Browse files Browse the repository at this point in the history
Move smoketest to EclipseFdn/open-vsx.org
  • Loading branch information
amvanbaren authored Oct 3, 2024
2 parents 9b18c76 + b4829de commit 459a8ad
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 72 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,19 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
- name: Install Yarn
run: |
corepack enable
corepack prepare yarn@stable --activate
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set Image Version
run: echo "IMAGE_VERSION=${GITHUB_SHA:0:7}" >> $GITHUB_ENV
- name: Build CLI
Expand All @@ -50,7 +51,7 @@ jobs:
run: echo ${{ github.event.number }} > PR_NUMBER.txt
- name: Archive PR number
if: github.event_name == 'pull_request'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: PR_NUMBER
path: PR_NUMBER.txt
66 changes: 0 additions & 66 deletions .github/workflows/smoketest.yml

This file was deleted.

5 changes: 3 additions & 2 deletions .github/workflows/sonar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
full_name: ${{ github.event.repository.full_name }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: ${{ github.event.workflow_run.head_repository.full_name }}
ref: ${{ github.event.workflow_run.head_branch }}
Expand Down Expand Up @@ -60,8 +60,9 @@ jobs:
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
- name: Generate JaCoCo test report
run: server/gradlew --no-daemon -p server jacocoTestReport
Expand Down

0 comments on commit 459a8ad

Please sign in to comment.