mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-12 23:50:20 +03:00
moved tests from Earthfile to ubuntu_x86_64.yml
This commit is contained in:
parent
b8d043c7d4
commit
39c901fd8f
5
.github/workflows/ubuntu_x86_64.yml
vendored
5
.github/workflows/ubuntu_x86_64.yml
vendored
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user