Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Fix gwos script tests #1102

Closed
wants to merge 13 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
93 changes: 93 additions & 0 deletions .github/workflows/gwos-scripts.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
name: Scripts test

on:
merge_group:
types: [checks_requested]
push:
# TODO: remove this comment
# paths:
# - 'gwos/**'
# - 'crates/tests/src/script_tests/**'
pull_request:
paths:
- 'gwos/**'
- 'crates/tests/src/script_tests/**'

jobs:
check-c-format:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
# Note: cargo fmt is done in .github/workflows/rust.yml
- name: Check format of gwos/c
working-directory: gwos/c
run: make fmt

build-gwos-and-test-scripts:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Cache of Cargo
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-${{ runner.arch }}-cargo-gwos-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-${{ runner.arch }}-cargo-gwos

- name: Install moleculec
run: |
test "$(moleculec --version)" = "Moleculec 0.7.2" \
|| cargo install moleculec --version 0.7.2 --force
- name: Install capsule
env:
CAPSULE_VERSION: v0.7.0
run: |
(which capsule && test "$(capsule --version)" = "Capsule 0.7.0") \
|| curl -OL https://github.com/nervosnetwork/capsule/releases/download/${CAPSULE_VERSION}/capsule_${CAPSULE_VERSION}_x86_64-linux.tar.gz \
&& tar xf capsule_${CAPSULE_VERSION}_x86_64-linux.tar.gz \
&& mv capsule_${CAPSULE_VERSION}_x86_64-linux/capsule ~/.cargo/bin/ \
&& rm capsule_${CAPSULE_VERSION}_x86_64-linux.tar.gz \
&& rm -rf capsule_${CAPSULE_VERSION}_x86_64-linux/
capsule --version

- name: Compile C contracts of gwos
working-directory: gwos/c
run: make

- uses: actions/cache@v3
id: fetch-capsule-cache
with:
path: |
gwos/.tmp/capsule-cache.tar
key: ${{ runner.os }}-capsule-cache-${{ hashFiles('contracts/Cargo.lock') }}

- name: Restore capsule cache
if: steps.fetch-capsule-cache.outputs.cache-hit == 'true'
working-directory: gwos
run: tools/restore-capsule-cache.sh

- name: Build Rust contracts
working-directory: gwos
run: capsule build

- name: Backup capsule cache
if: steps.fetch-capsule-cache.outputs.cache-hit != 'true'
working-directory: gwos
run: tools/backup-capsule-cache.sh

- name: Test C Uint256
run: cargo test -p c-uint256-tests
- name: Script tests
run: cargo test --features scripts --features gw-config/no-builtin script_tests
78 changes: 0 additions & 78 deletions .github/workflows/scripts.yml

This file was deleted.

Loading
Loading