Skip to content

Commit

Permalink
Bump tinygo and re-enable flavorful runtime test. (#708)
Browse files Browse the repository at this point in the history
* update tinygo to 0.30.0

Signed-off-by: Jiaxiao Zhou (Mossaka) <[email protected]>

* re-enable flavorful

Signed-off-by: Jiaxiao Zhou (Mossaka) <[email protected]>

---------

Signed-off-by: Jiaxiao Zhou (Mossaka) <[email protected]>
  • Loading branch information
Mossaka authored Oct 18, 2023
1 parent a868860 commit 23f1bfe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
go-version: '1.20'
- uses: acifani/setup-tinygo@v1
with:
tinygo-version: 0.29.0
tinygo-version: 0.30.0
- run: cargo test --workspace
- run: cargo build
- run: cargo build --no-default-features
Expand Down
2 changes: 1 addition & 1 deletion tests/runtime/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ fn tests(name: &str, dir_name: &str) -> Result<Vec<PathBuf>> {

// FIXME: need to fix flaky Go test
#[cfg(feature = "go")]
if !go.is_empty() && name != "flavorful" {
if !go.is_empty() {
let world_name = &resolve.worlds[world].name;
let out_dir = out_dir.join(format!("go-{}", world_name));
drop(fs::remove_dir_all(&out_dir));
Expand Down

0 comments on commit 23f1bfe

Please sign in to comment.