Skip to content

Commit cb7e98c

Browse files
committed
fix: disable composedb and go-rust migration tests
1 parent 171e616 commit cb7e98c

4 files changed

Lines changed: 43 additions & 42 deletions

File tree

.github/workflows/build-and-test.yml

Lines changed: 40 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -231,50 +231,51 @@ jobs:
231231
fi
232232
make CERAMIC_ONE_IMAGE_TAG="${{ needs.build.outputs.image_tag }}" TEST_SELECTOR="$test_selector" HERMETIC_CMD=../bin/hermetic-driver hermetic-tests
233233
234-
run-migration-tests:
235-
name: Run Migration Tests
236-
runs-on: ubuntu-latest
237-
environment: tnet-prod-2024
238-
needs:
239-
- build-driver
240-
- publish-suite
241-
- generate-matrix #Needed to know the BUILD_TAG
242-
- build
243-
steps:
244-
-
245-
name: Checkout
246-
uses: actions/checkout@v3
247-
-
248-
name: Setup GKE auth
249-
uses: 'google-github-actions/auth@v1'
250-
with:
251-
credentials_json: ${{ secrets.GKE_SA_KEY }}
252-
-
253-
name: Get GKE credentials
254-
uses: 'google-github-actions/get-gke-credentials@v1'
255-
with:
256-
cluster_name: ${{ vars.GKE_CLUSTER }}
257-
location: ${{ vars.GKE_ZONE }}
258-
- uses: actions/download-artifact@master
259-
with:
260-
name: hermetic-driver
261-
path: ./bin
262-
-
263-
name: Test migration ${{ matrix.networks }}
264-
run: |
265-
set -euxo pipefail
266-
cd tests
267-
export BUILD_TAG=${{ needs.generate-matrix.outputs.build_tag }}
268-
TEST_NETWORK=./migration-networks/basic-go-rust-post.yaml
269-
chmod +x ../bin/hermetic-driver
270-
271-
make CERAMIC_ONE_IMAGE_TAG="${{ needs.build.outputs.image_tag }}" HERMETIC_CMD=../bin/hermetic-driver migration-tests
234+
# run-migration-tests:
235+
# name: Run Migration Tests
236+
# runs-on: ubuntu-latest
237+
# environment: tnet-prod-2024
238+
# needs:
239+
# - build-driver
240+
# - publish-suite
241+
# - generate-matrix #Needed to know the BUILD_TAG
242+
# - build
243+
# steps:
244+
# -
245+
# name: Checkout
246+
# uses: actions/checkout@v3
247+
# -
248+
# name: Setup GKE auth
249+
# uses: 'google-github-actions/auth@v1'
250+
# with:
251+
# credentials_json: ${{ secrets.GKE_SA_KEY }}
252+
# -
253+
# name: Get GKE credentials
254+
# uses: 'google-github-actions/get-gke-credentials@v1'
255+
# with:
256+
# cluster_name: ${{ vars.GKE_CLUSTER }}
257+
# location: ${{ vars.GKE_ZONE }}
258+
# - uses: actions/download-artifact@master
259+
# with:
260+
# name: hermetic-driver
261+
# path: ./bin
262+
# -
263+
# name: Test migration ${{ matrix.networks }}
264+
# run: |
265+
# set -euxo pipefail
266+
# cd tests
267+
# export BUILD_TAG=${{ needs.generate-matrix.outputs.build_tag }}
268+
# TEST_NETWORK=./migration-networks/basic-go-rust-post.yaml
269+
# chmod +x ../bin/hermetic-driver
270+
#
271+
# make CERAMIC_ONE_IMAGE_TAG="${{ needs.build.outputs.image_tag }}" HERMETIC_CMD=../bin/hermetic-driver migration-tests
272272

273273
integration-test-results:
274274
name: Hermetic Test Results
275275
if: ${{ always() }}
276276
runs-on: ubuntu-latest
277-
needs: [run-integration-tests, run-migration-tests]
277+
# needs: [run-integration-tests, run-migration-tests]
278+
needs: [run-integration-tests]
278279
steps:
279280
- run: exit 1
280281
# see https://stackoverflow.com/a/67532120/4907315

tests/suite/src/__tests__/correctness/fast/anchor.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import * as helpers from '../../../utils/dynamoDbHelpers.js'
77

88
const ComposeDbUrls = String(process.env.COMPOSEDB_URLS).split(',')
99

10-
describe('anchor', () => {
10+
describe.skip('anchor', () => {
1111
beforeAll(async () => await helpers.createTestTable())
1212
afterAll(async () => await helpers.cleanup())
1313

tests/suite/src/__tests__/correctness/fast/flight-sql.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ describe('flight sql', () => {
249249

250250
// Expect stream query to be complete
251251
expect(await query.next()).toBeNull()
252-
}, 10000)
252+
}, 20000)
253253

254254
test('prepared feed query', async () => {
255255
const testModel: ModelDefinition = {

tests/suite/src/__tests__/correctness/slow/ceramic-cas-integration.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const ComposeDbUrls = String(process.env.COMPOSEDB_URLS).split(',')
1313
const adminSeeds = String(process.env.COMPOSEDB_ADMIN_DID_SEEDS).split(',')
1414

1515
// Skipped https://linear.app/3boxlabs/issue/WS1-1460/unskip-ceramic-cas-basic-integration
16-
describe('Ceramic<->CAS basic integration', () => {
16+
describe.skip('Ceramic<->CAS basic integration', () => {
1717
jest.setTimeout(1000 * 60 * 30) // 30 minutes (default max wait time for an anchor is 30 minutes)
1818

1919
let ceramic: CeramicClient

0 commit comments

Comments
 (0)