Skip to content

Commit

Permalink
chore(sdk): Disable WASM integration tests (temporary) (#571)
Browse files Browse the repository at this point in the history
WASM tests have been temporarily disabled to due compatibility issues with Go 1.21.

Signed-off-by: Derek Trider <[email protected]>
  • Loading branch information
Derek Trider authored Aug 29, 2023
1 parent 8ddb365 commit e8a994d
Showing 1 changed file with 26 additions and 24 deletions.
50 changes: 26 additions & 24 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,30 +87,32 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

WASMIntegrationTest:
runs-on: ubuntu-20.04
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: Setup Node.js
uses: actions/setup-node@v3
- name: Run Integration tests
uses: GabrielBB/xvfb-action@v1
with:
run: |
echo '127.0.0.1 testnet.orb.local' | sudo tee -a /etc/hosts
echo '127.0.0.1 file-server.trustbloc.local' | sudo tee -a /etc/hosts
echo '127.0.0.1 did-resolver.trustbloc.local' | sudo tee -a /etc/hosts
echo '127.0.0.1 vc-rest-echo.trustbloc.local' | sudo tee -a /etc/hosts
echo '127.0.0.1 api-gateway.trustbloc.local' | sudo tee -a /etc/hosts
echo '127.0.0.1 cognito-mock.trustbloc.local' | sudo tee -a /etc/hosts
make integration-test-wasm
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Temporarily disabled due to compatibility issues with Go 1.21.
#
# WASMIntegrationTest:
# runs-on: ubuntu-20.04
# timeout-minutes: 30
# steps:
# - uses: actions/checkout@v3
# - name: Set up Go
# uses: actions/setup-go@v3
# with:
# go-version: ${{ env.GO_VERSION }}
# - name: Setup Node.js
# uses: actions/setup-node@v3
# - name: Run Integration tests
# uses: GabrielBB/xvfb-action@v1
# with:
# run: |
# echo '127.0.0.1 testnet.orb.local' | sudo tee -a /etc/hosts
# echo '127.0.0.1 file-server.trustbloc.local' | sudo tee -a /etc/hosts
# echo '127.0.0.1 did-resolver.trustbloc.local' | sudo tee -a /etc/hosts
# echo '127.0.0.1 vc-rest-echo.trustbloc.local' | sudo tee -a /etc/hosts
# echo '127.0.0.1 api-gateway.trustbloc.local' | sudo tee -a /etc/hosts
# echo '127.0.0.1 cognito-mock.trustbloc.local' | sudo tee -a /etc/hosts
# make integration-test-wasm
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

iOSFlutterIntegrationTest:
runs-on: macos-12
Expand Down

0 comments on commit e8a994d

Please sign in to comment.