Skip to content

Commit

Permalink
debug: attempt 2
Browse files Browse the repository at this point in the history
  • Loading branch information
4e6 committed Feb 1, 2025
1 parent 4612037 commit 3081c38
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 15 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ide-packaging-optional.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,10 +159,11 @@ jobs:
uses: actions/download-artifact@v4
with:
name: project-manager-macos
- run: |-
|- mkdir -p dist/backend
|- tar -xvf project-manager.tar -C dist/backend
|- rm project-manager.tar
- run: |2-
mkdir -p dist/backend
tar -xvf project-manager.tar -C dist/backend
rm project-manager.tar
- run: ls -l dist; ls -l dist/backend
- run: ./run ide build --backend-source local --gui-upload-artifact false
env:
Expand Down
18 changes: 10 additions & 8 deletions .github/workflows/ide-packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -278,10 +278,11 @@ jobs:
uses: actions/download-artifact@v4
with:
name: project-manager-linux
- run: |-
|- mkdir -p dist/backend
|- tar -xvf project-manager.tar -C dist/backend
|- rm project-manager.tar
- run: |2-
mkdir -p dist/backend
tar -xvf project-manager.tar -C dist/backend
rm project-manager.tar
- run: ls -l dist; ls -l dist/backend
- run: ./run ide build --backend-source local --gui-upload-artifact false
env:
Expand Down Expand Up @@ -366,10 +367,11 @@ jobs:
uses: actions/download-artifact@v4
with:
name: project-manager-windows
- run: |-
|- mkdir -p dist/backend
|- tar -xvf project-manager.tar -C dist/backend
|- rm project-manager.tar
- run: |2-
mkdir -p dist/backend
tar -xvf project-manager.tar -C dist/backend
rm project-manager.tar
- run: ls -l dist; ls -l dist/backend
- run: ./run ide build --backend-source local --gui-upload-artifact false
env:
Expand Down
7 changes: 4 additions & 3 deletions build_tools/build/src/ci_gen/job.rs
Original file line number Diff line number Diff line change
Expand Up @@ -684,9 +684,10 @@ impl JobArchetype for PackageIde {
steps.push(download_project_manager);

let unpack_project_manager = Step {
run: Some(r#"|- mkdir -p dist/backend
|- tar -xvf project-manager.tar -C dist/backend
|- rm project-manager.tar"#.into()),
run: Some("
mkdir -p dist/backend
tar -xvf project-manager.tar -C dist/backend
rm project-manager.tar".into()),
..Default::default()
};
steps.push(unpack_project_manager);
Expand Down

0 comments on commit 3081c38

Please sign in to comment.