Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
barankaraaslan committed Jul 18, 2024
1 parent 3660368 commit 56e9880
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/tmp.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: delete me, debugging ci

on:
push:
branches:
- sre-359-make-integration-tests-be-able-to-use-latest-wasmer-cli

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}

jobs:
test:
runs-on: ubuntu-22.04
steps:
- name: Checkout wasmer-integration-tests repository
uses: actions/checkout@v3
with:
repository: wasmerio/wasmer-integration-tests
submodules: true
token: ${{ secrets.CLONE_WASMER_INTEGRATION_TESTS }}
- uses: actions/download-artifact@v4
with:
name: wasmer-cli-linux-x64
run-id: 9978713382
github-token: ${{ github.token }}
- run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
. "$HOME/.cargo/env"
tar -xzf build-wasmer.tar.gz
export PATH=$PATH:$PWD/bin
wasmer config set registry.url https://registry.wasmer.wtf/graphql
wasmer login ${{ secrets.WAPM_DEV_TOKEN }}
wasmer whoami

0 comments on commit 56e9880

Please sign in to comment.