-
Notifications
You must be signed in to change notification settings - Fork 831
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3660368
commit 56e9880
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |