Skip to content

Commit

Permalink
fix: gradle acceptance test [HEAD-283] (#4571)
Browse files Browse the repository at this point in the history
* Revert "fix: temporarily skip failing gradle test"

This reverts commit c194271.

* fix: pin arm image

* chore: pin linux version for stability
  • Loading branch information
michelkaporin committed Apr 26, 2023
1 parent 27ee461 commit e164c1d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ executors:
resource_class: large
arm64:
machine:
image: ubuntu-2204:current
image: ubuntu-2204:2023.02.1
working_directory: /mnt/ramdisk/snyk
resource_class: arm.large
linux:
machine:
image: ubuntu-2204:current
image: ubuntu-2204:2023.02.1
working_directory: /mnt/ramdisk/snyk
resource_class: large
macos:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,7 @@ describe('`snyk test` of basic projects for each language/ecosystem', () => {
expect(code).toEqual(0);
});

// temporarily skipping test to unblock pipeline
test.skip('run `snyk test` on a gradle project', async () => {
test('run `snyk test` on a gradle project', async () => {
const project = await createProjectFromWorkspace('gradle-app');

const { code } = await runSnykCLI('test -d', {
Expand Down

0 comments on commit e164c1d

Please sign in to comment.