moved tests from Earthfile to ubuntu_x86_64.yml

This commit is contained in:
Anton-4 2022-08-26 10:39:16 +02:00
parent b8d043c7d4
commit 39c901fd8f
No known key found for this signature in database
GPG Key ID: A13F4A6E21141925
2 changed files with 4 additions and 3 deletions

View File

@ -11,7 +11,7 @@ env:
jobs:
test-zig-rust-wasm:
name: test zig, rust, wasm
name: test zig, rust, wasm...
runs-on: [self-hosted, i5-4690K]
timeout-minutes: 90
env:
@ -21,6 +21,9 @@ jobs:
with:
clean: "true"
- name: Check for duplicate AUTHORS
run: diff <(sort AUTHORS) <(sort AUTHORS | uniq) # The < operator treats a string as a file. diff 'succeeds' if no difference.
- name: zig fmt check, zig tests
run: cd crates/compiler/builtins/bitcode && ./run-tests.sh

View File

@ -117,8 +117,6 @@ verify-no-git-changes:
RUN ! git ls-files --deleted --modified --others --exclude-standard | grep -E .
test-all:
# Check for duplicate AUTHORS. (The < operator treats a string as a file. diff 'succeeds' if no difference.)
RUN diff <(sort AUTHORS) <(sort AUTHORS | uniq)
BUILD +test-zig
BUILD +test-rust
BUILD +verify-no-git-changes