Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Upgrade to Emscripten 3.1.66 #6942

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Upgrade Travis Ubuntu version

8602c8e
Select commit
Loading
Failed to load commit list.
Open

[WIP] Upgrade to Emscripten 3.1.66 #6942

Upgrade Travis Ubuntu version
8602c8e
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request failed Nov 12, 2024 in 30m 44s

Build Failed

The build failed. This is a change from the previous build, which passed.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #6942 [WIP] Upgrade to Emscripten 3.1.66.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.

Build Configuration

Build Option Setting
Language C++
Operating System Linux (Jammy)
Compiler Version clang
Build Configuration
{
  "language": "cpp",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "sudo": false,
  "compiler": [
    "clang"
  ],
  "cache": {
    "directories": [
      "$HOME/.npm"
    ]
  },
  "addons": {
    "apt": {
      "packages": [
        "cmake",
        "p7zip-full"
      ]
    }
  },
  "install": [
    "nvm install v18 && nvm use v18",
    "mkdir .build-tests",
    "cd .build-tests",
    "cmake -DBUILD_GDJS=FALSE -DBUILD_TESTS=TRUE -DCMAKE_CXX_COMPILER=$(which $CXX) -DCMAKE_C_COMPILER=$(which $CC) ..",
    "make -j 4",
    "cd ..",
    "git clone --depth 1 --branch 3.1.66 https://github.com/juj/emsdk.git",
    "cd emsdk && ./emsdk install 3.1.66 && ./emsdk activate 3.1.66 && cd ..",
    "cd GDevelop.js && npm install && cd ..",
    "(set -e; cd GDevelop.js && source ../emsdk/emsdk_env.sh && npm run build && cd ..)",
    "npm -v",
    "cd newIDE/app && npm install",
    "cd ../..",
    "cd GDJS && npm install && cd tests && npm install",
    "cd ../.."
  ],
  "script": [
    "cd .build-tests",
    "Core/GDCore_tests",
    "cd ..",
    "cd GDevelop.js",
    "npm test",
    "cd ..",
    "cd newIDE/app",
    "npm test",
    "npm run flow",
    "npm run check-format",
    "npm run check-script-types",
    "cd ../..",
    "cd GDJS",
    "npm run check-format",
    "cd .."
  ]
}