Skip to content

Commit

Permalink
Add beta-5 toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
sdankel committed Feb 10, 2024
1 parent ab42eba commit 59a07e4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function App() {
const [isCompiled, setIsCompiled] = useState(false);

// The toolchain to use for compilation.
const [toolchain, setToolchain] = useState<Toolchain>('beta-4');
const [toolchain, setToolchain] = useState<Toolchain>('beta-5');

// The deployment state
const [deployState, setDeployState] = useState(DeployState.NOT_DEPLOYED);
Expand Down
1 change: 1 addition & 0 deletions app/src/features/editor/components/ToolchainDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
1 change: 1 addition & 0 deletions deployment/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 59a07e4

Please sign in to comment.