Skip to content

Commit

Permalink
*
Browse files Browse the repository at this point in the history
  • Loading branch information
ofalvai committed Dec 4, 2024
1 parent 667c71c commit db91a0d
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions bitrise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -306,9 +306,19 @@ step_bundles:
cp "${ORIG_BITRISE_DEPLOY_DIR}/${linux_only_test_log_file_name}.xml" "${test_results_dir}/${linux_only_test_log_file_name}.xml"
echo "${linux_only_test_name_json}" > "${test_results_dir}/test-info.json"
- script:
title: Ubuntu 20 Go hackery # TODO: remove this once the workflow is migrated to the Ubuntu 22 stack
# The Go + ASDF situation is messed up on the Ubuntu 20 stack. Even though this workflow starts by installing
# the correct Go version with ASDF, the first non-Bash-toolkit step (deploy-to-bitrise-io) will fail,
# probably because the CLI process (which runs the steps) is already running by the time the Go version is set.
title: Ubuntu 20 Go hackery # TODO: remove this once the workflow is migrated to the Ubuntu 22 stack
inputs:
- content: rm .tool-versions
- content:
#!/bin/bash
set -exo pipefai
rm .tool-versions
asdf current
asdf install golang
echo $PATH
type -a go
- deploy-to-bitrise-io@2: { }

test_binary_build:
Expand Down

0 comments on commit db91a0d

Please sign in to comment.