Skip to content

Commit 8405d65

Browse files
committed
[HACK]
1 parent 6fa8618 commit 8405d65

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

compiler/build.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -euv -o pipefail
44

55
channels_to_build="${CHANNELS_TO_BUILD-stable beta nightly}"
6-
tools_to_build="${TOOLS_TO_BUILD-rustfmt clippy miri}"
6+
tools_to_build="${TOOLS_TO_BUILD-}"
77
perform_push="${PERFORM_PUSH-false}"
88

99
repository=shepmaster
@@ -14,8 +14,8 @@ for channel in $channels_to_build; do
1414
image_name="rust-${channel}"
1515
full_name="${repository}/${image_name}"
1616

17-
docker pull "${full_name}" || true
18-
docker pull "${full_name}:munge" || true
17+
# docker pull "${full_name}" || true
18+
# docker pull "${full_name}:munge" || true
1919

2020
# Prevent building the tool multiple times
2121
# https://github.com/moby/moby/issues/34715
@@ -58,7 +58,7 @@ for tool in $tools_to_build; do
5858
image_name="${tool}"
5959
full_name="${repository}/${image_name}"
6060

61-
docker pull "${full_name}" || true
61+
# docker pull "${full_name}" || true
6262
docker build -t "${full_name}" \
6363
.
6464

orchestrator/src/coordinator.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1085,3 +1085,6 @@ mod tests {
10851085

10861086
impl<F: Future> TimeoutExt for F {}
10871087
}
1088+
1089+
// tests:
1090+
// channels

tests/spec/features/sharing_with_others_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
require 'support/matchers/be_at_url'
44
require 'support/playground_actions'
55

6-
RSpec.feature "Sharing the code with others", type: :feature, js: true do
6+
RSpec.feature "Sharing the code with others", :outside, type: :feature, js: true do
77
include PlaygroundActions
88

99
before { visit '/' }

ui/src/sandbox.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ fn basic_secure_docker_command() -> Command {
118118
let mut cmd = docker_command!(
119119
"run",
120120
"--platform",
121-
"linux/amd64",
121+
"linux/arm64",
122122
"--detach",
123123
"--cap-drop=ALL",
124124
// Needed to allow overwriting the file

ui/src/server_axum.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ async fn evaluate(Json(req): Json<EvaluateRequest>) -> Result<Json<EvaluateRespo
153153
}
154154

155155
async fn compile(Json(req): Json<CompileRequest>) -> Result<Json<CompileResponse>> {
156-
if cfg!(new) {
156+
if true {
157157
let coordinator = orchestrator::coordinator::Coordinator::new_docker().unwrap();
158158

159159
let req = req.try_into().unwrap();

0 commit comments

Comments
 (0)