Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
sbc100 committed Dec 17, 2024
1 parent 22a1448 commit ea4940d
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 28 deletions.
54 changes: 54 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -973,4 +973,58 @@ workflows:
build-test:
jobs:
- ruff
- mypy
- eslint
- build-docs
- build-linux
- test-sanity:
requires:
- build-linux
- test-posixtest:
requires:
- build-linux
- test-core0:
requires:
- build-linux
- test-core2:
requires:
- build-linux
- test-core3:
requires:
- build-linux
- test-wasm64:
requires:
- build-linux
- test-wasm64-4gb:
requires:
- build-linux
- test-wasm2js1:
requires:
- build-linux
- test-other:
requires:
- build-linux
- test-browser-chrome:
requires:
- build-linux
- test-browser-chrome-2gb:
requires:
- build-linux
- test-browser-chrome-wasm64:
requires:
- build-linux
- test-browser-chrome-wasm64-4gb:
requires:
- build-linux
- test-browser-firefox:
requires:
- build-linux
- test-browser-firefox-wasm64
- test-sockets-chrome:
requires:
- build-linux
- test-jsc
- test-spidermonkey
- test-node-compat
- test-windows
- test-mac-arm64
27 changes: 0 additions & 27 deletions .github/workflows/archive.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,12 +1,31 @@
name: CI

on:
create:
tags:
push:
branches:
- main
pull_request:

permissions:
contents: read

jobs:
archive:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- name: make dist
run: |
make dist
version=`cat emscripten-version.txt | sed s/\"//g`
echo "VERSION=$version" >> $GITHUB_ENV
- uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
with:
name: emscripten-${{ env.VERSION }}
path: emscripten-${{ env.VERSION }}.tar.bz2

check-expectations:
runs-on: ubuntu-latest
steps:
Expand All @@ -33,9 +52,10 @@ jobs:
echo "JS_ENGINES = [NODE_JS]" >> $EM_CONFIG
echo "final config:"
cat $EM_CONFIG
- name: Check test expectaions on main
- name: Check test expectations on main
run: |
git checkout origin/main
# Hack to honor changes to rebaseline_tests.py in the current PR
git checkout - ./tools/maint/rebaseline_tests.py
./bootstrap
if ! ./tools/maint/rebaseline_tests.py --check-only; then
Expand Down

0 comments on commit ea4940d

Please sign in to comment.