Skip to content

Commit ea4940d

Browse files
committed
.
1 parent 22a1448 commit ea4940d

File tree

3 files changed

+75
-28
lines changed

3 files changed

+75
-28
lines changed

.circleci/config.yml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -973,4 +973,58 @@ workflows:
973973
build-test:
974974
jobs:
975975
- ruff
976+
- mypy
977+
- eslint
978+
- build-docs
979+
- build-linux
980+
- test-sanity:
981+
requires:
982+
- build-linux
983+
- test-posixtest:
984+
requires:
985+
- build-linux
986+
- test-core0:
987+
requires:
988+
- build-linux
989+
- test-core2:
990+
requires:
991+
- build-linux
992+
- test-core3:
993+
requires:
994+
- build-linux
995+
- test-wasm64:
996+
requires:
997+
- build-linux
998+
- test-wasm64-4gb:
999+
requires:
1000+
- build-linux
1001+
- test-wasm2js1:
1002+
requires:
1003+
- build-linux
1004+
- test-other:
1005+
requires:
1006+
- build-linux
1007+
- test-browser-chrome:
1008+
requires:
1009+
- build-linux
1010+
- test-browser-chrome-2gb:
1011+
requires:
1012+
- build-linux
1013+
- test-browser-chrome-wasm64:
1014+
requires:
1015+
- build-linux
1016+
- test-browser-chrome-wasm64-4gb:
1017+
requires:
1018+
- build-linux
1019+
- test-browser-firefox:
1020+
requires:
1021+
- build-linux
1022+
- test-browser-firefox-wasm64
1023+
- test-sockets-chrome:
1024+
requires:
1025+
- build-linux
1026+
- test-jsc
1027+
- test-spidermonkey
1028+
- test-node-compat
1029+
- test-windows
9761030
- test-mac-arm64

.github/workflows/archive.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

.github/workflows/check-expectations.yml renamed to .github/workflows/ci.yml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,31 @@
11
name: CI
22

33
on:
4+
create:
5+
tags:
6+
push:
7+
branches:
8+
- main
49
pull_request:
510

611
permissions:
712
contents: read
813

914
jobs:
15+
archive:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
19+
- name: make dist
20+
run: |
21+
make dist
22+
version=`cat emscripten-version.txt | sed s/\"//g`
23+
echo "VERSION=$version" >> $GITHUB_ENV
24+
- uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
25+
with:
26+
name: emscripten-${{ env.VERSION }}
27+
path: emscripten-${{ env.VERSION }}.tar.bz2
28+
1029
check-expectations:
1130
runs-on: ubuntu-latest
1231
steps:
@@ -33,9 +52,10 @@ jobs:
3352
echo "JS_ENGINES = [NODE_JS]" >> $EM_CONFIG
3453
echo "final config:"
3554
cat $EM_CONFIG
36-
- name: Check test expectaions on main
55+
- name: Check test expectations on main
3756
run: |
3857
git checkout origin/main
58+
# Hack to honor changes to rebaseline_tests.py in the current PR
3959
git checkout - ./tools/maint/rebaseline_tests.py
4060
./bootstrap
4161
if ! ./tools/maint/rebaseline_tests.py --check-only; then

0 commit comments

Comments
 (0)