From 59a07e41bf7824515d34766ebce67a6180488984 Mon Sep 17 00:00:00 2001 From: Sophie Date: Fri, 9 Feb 2024 16:04:27 -0800 Subject: [PATCH] Add beta-5 toolchain --- app/src/App.tsx | 2 +- app/src/features/editor/components/ToolchainDropdown.tsx | 1 + deployment/Dockerfile | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/app/src/App.tsx b/app/src/App.tsx index 0438a27..0da1e2c 100644 --- a/app/src/App.tsx +++ b/app/src/App.tsx @@ -24,7 +24,7 @@ function App() { const [isCompiled, setIsCompiled] = useState(false); // The toolchain to use for compilation. - const [toolchain, setToolchain] = useState('beta-4'); + const [toolchain, setToolchain] = useState('beta-5'); // The deployment state const [deployState, setDeployState] = useState(DeployState.NOT_DEPLOYED); diff --git a/app/src/features/editor/components/ToolchainDropdown.tsx b/app/src/features/editor/components/ToolchainDropdown.tsx index f0d4809..fa5b393 100644 --- a/app/src/features/editor/components/ToolchainDropdown.tsx +++ b/app/src/features/editor/components/ToolchainDropdown.tsx @@ -5,6 +5,7 @@ import MenuItem from '@mui/material/MenuItem'; import FormControl from '@mui/material/FormControl'; const ToolchainNames = [ + 'beta-5', 'beta-4', 'beta-3', 'beta-2', diff --git a/deployment/Dockerfile b/deployment/Dockerfile index 3ca2a62..02f1dd2 100644 --- a/deployment/Dockerfile +++ b/deployment/Dockerfile @@ -53,6 +53,7 @@ RUN fuelup toolchain install beta-1 RUN fuelup toolchain install beta-2 RUN fuelup toolchain install beta-3 RUN fuelup toolchain install beta-4 +RUN fuelup toolchain install beta-5 EXPOSE 8080