Skip to content

Commit

Permalink
fix: workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewmd5 committed Dec 16, 2023
1 parent f639ab6 commit 19f31fb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-csharp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ jobs:
- name: Build and run tests
shell: bash
run: |
dotnet run --project ../../Compiler/ --cs "./GeneratedTestCode/Output.g.cs" --namespace Bebop.Codegen --files $(ls -p ../Schemas/Valid/*.bop | tr '\n' ' ')
dotnet run --project ../../Compiler/ --trace -i $(ls -p ../Schemas/Valid/*.bop | tr '\n' ' ') build -g "cs:./GeneratedTestCode/Output.g.cs,namespace=Bebop.Codegen"
dotnet test -nowarn:CS0618
working-directory: "./Laboratory/C#"
2 changes: 1 addition & 1 deletion Laboratory/Dart/test.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
mkdir -p gen
dotnet run --project ../../Compiler --files ../Schemas/Valid/{array_of_strings,const,jazz,request}.bop --dart gen/gen.dart
dotnet run --project ../../Compiler --trace -i ../Schemas/Valid/{array_of_strings,const,jazz,request}.bop build -g dart:gen/gen.dart
pub run test
2 changes: 1 addition & 1 deletion Laboratory/TypeScript/compile-schemas.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash

dotnet run --project ../../Compiler --include ../Schemas/Valid/*.bop build --generator "ts:test/generated/gen.ts"
dotnet run --project ../../Compiler --trace --include ../Schemas/Valid/*.bop build --generator "ts:test/generated/gen.ts"

0 comments on commit 19f31fb

Please sign in to comment.